From: James Edward Gray II Date: 2006-11-06T12:35:08+09:00 Subject: Re: FasterCSV question On Nov 5, 2006, at 8:19 PM, Reid Thompson wrote: > A|This is text|Is this supposed to "error"| This line is not a legal CSV format. To be correct it would need to be: A|This is text|"Is this supposed to ""error"""| Luckily, it's a trivial format you shouldn't need FasterCSV to parse. You can break it down with: fields = line.split("|") Hope that helps. James Edward Gray II