i have the following string:
http://pastebin.com/d29ae565b
i need to separate each value and put it in an array. typically it would be done by \".split\". howeve
If you are reading that data from a file, you can back up a step and use the ReadLine() method from the StreamReader class.
The code would look something like this:
Dim myReader as new StreamReader(strFilePath)
Dim myLines as new List(Of String)
While Not myReader.EndOfStream
myLines.Add(myReader.ReadLine())
end While
Your List(of String) would then contain one String for each row of data.