From: James Edward Gray II Date: 2006-08-29T06:25:24+09:00 Subject: Re: FasterCSV problem On Aug 28, 2006, at 3:40 PM, Mark Van Holstyn wrote: > Is there any way to make the faster CSV library parse this line? > > > 20 6" Multibrand Pricer Insert 2 4 > > I know i can use the :col_sep options to change the column > separator to a > tab, but it fails to parse this because of an unclosed quoted > field. It > seems like there should be an option to say that the fields are not > quoted. Well, if quotes aren't quoted it's not CVS and all the parser you really need is: line.split("\t") right? ;) FasterCSV uses a very strict parser, so no it won't allow this. Sorry. James Edward Gray II