[Tutor] Matrix Read-in and Inversion

alan.gauld@bt.com alan.gauld@bt.com
Wed, 5 Sep 2001 15:59:03 +0100


> csv's are easy, just use string.split.

Careful, that won't work for string fields containing embedded commas.
You need to split out quoted foelds first then split the remaining 
fields by commas...

There are a few other niceties that can trip you up with CSV too 
but quoted fields are the worst and most common nasty.

Alan G