Question: more parsing issues

This question is related to the Question parse a list with strings and floats

Having a little trouble parsing the data

with(StringTools):
a:= HTTP[Get]("http://www.swpc.noaa.gov/ftpdir/indices/DSD.txt")[2]:

b:=Split(a,"\n"):

results:=b[14..]:

results[1]
                   "2010 06 29   74     24      110      1    -999   A4.4   0  0  0  1  0  0  0"

parse(results[1])
Error, incorrect syntax in parse: unexpected number (8)

I think the problem is extra whitespaces.  Any ideas?

Please Wait...