in reply to multi-line (string doc) parsing

I wrote a small bit of code for a related problem a while back that should reliably parse this for you: Parse fixed-length ascii table

The only caveat is the fact that you'll have to break each part up into a chunk of its own and process each separately, and you'd have to strip out the ------ fields (before or after parsing). Hope this helps.