Possible Duplicate:
splitting a string
i have a string which looks like this: http://pastebin.com/m5508ff19
i need to get each of the numbers and put them in an array in this order: 0, 50, 100, 100, 200, 400, 218, 9.8, ???, 6.65, 6.31 etc...
i have the following code but for some reason it only does the first column, it only gives me 0, 50, 100, 100, 200, 400, 218, 9.8, ???
Dim list_numbers As New List(Of String)
Dim fields() As String
fields = calculationText.Split(Environment.NewLine)
For Each CurrLine As String In fields
list_numbers.Add(CurrLine.Split(Char.Parse(" "))(0))
Next
i need help to get every number in an array in the above order