vote up 0 vote down star

I'm parsing a tab-delimited file using FasterCSV:

  csv_rows = FasterCSV.readlines(file_location, {:col_sep=>"\t"})

When I parse this I get an 'Illegal quoting on line 1.' error. The line contains this text:

...around \"foo bar\" with...

Is there another way to escape quotes that might work?

Thanks,

flag

2 Answers

vote up 0 vote down

Is there another way to escape quotes that might work?

"...around ""foo bar"" with..."

link|flag
vote up 0 vote down

I think the regular CSV class would accept that, incidentally.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.