up vote 0 down vote favorite
1
share [g+] share [fb]

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,

link|improve this question
feedback

2 Answers

Is there another way to escape quotes that might work?

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

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown