I\'m currently optimizing and maintaining a Perl script used to analyze two CSV files for different data. After it\'s done analyzing the data, the various results are written ou
This should work:
my $csv = Text::CSV->new({ 'escape_char' => '\\', 'quote_char' => '"', 'sep_char' => ',' });
Also Text::xSV