http://www.perlmonks.org?node_id=861127


in reply to Issue parsing CSV into hashes?

The parse is failing because of the quotation marks. From the manual: "Fields that contain a special character (comma, newline, or double quote), must be enclosed in double quotes."

Change your initialization to:

my $csv = Text::CSV_XS->new( { 'allow_loose_quotes' => 1, } );
and it should parse.

Resetting 'sep_char' to ':' won't work, because that will make CSV split on ':' characters, and you want it to split on commas.

I suspect that for what you're doing, you're not actually getting any value from Text::CSV_XS. I think you'd do better just to use split(), but that's up to you.

stephen