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,