I'm trying to use Text::CSV to parse a csv file and one of the fields occasionally contains strings within the field that are quoted, when encountered the parser errors out.
What I'm trying to parse that errors looks like the following
Field1,""Quoted String" rest of the data,
I'm using sep_char of , but nothing else. Is there a way to get this module to parse this line correctly?
thanks