M
Microsoft
I have a multine list that I would like to split into an array. I paste it
into a richtext box and go from there, but it just makes the first part of
the array the whole list with little boxes inbetween. Here is the code
Dim userdata As String
Dim serverarray As String()
Dim servercount As Integer
userdata = RichTextBox1.Text
serverarray = userdata.Split(vbCrLf)
Console.WriteLine(serverarray(0))
into a richtext box and go from there, but it just makes the first part of
the array the whole list with little boxes inbetween. Here is the code
Dim userdata As String
Dim serverarray As String()
Dim servercount As Integer
userdata = RichTextBox1.Text
serverarray = userdata.Split(vbCrLf)
Console.WriteLine(serverarray(0))