Skip to content

Instantly share code, notes, and snippets.

@NPS-ARCN-CAKN
Created September 23, 2016 19:48
Show Gist options
  • Save NPS-ARCN-CAKN/cd594c99d81bf786384bffa2bcd8163a to your computer and use it in GitHub Desktop.
Save NPS-ARCN-CAKN/cd594c99d81bf786384bffa2bcd8163a to your computer and use it in GitHub Desktop.
VB .Net: Loop through each line of a string
Dim str As String() = textBoxName.Text.Split(New [Char]() {CChar(vbCrLf)})
For Each s As String In str
MsgBox(s)
Next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment