Text::CSV_XS version 0.32 has problems parsing the sample attached file.
I've tried all kinds of combinations of things to pass to new() but it
still won't work quite right.
The "first name" field should be
John M. "Jack"
But instead it becomes:
John M. Jack Thompson
And the "last name" field is shifted over and becomes the next field and
last field is empty. So dumped it should be:
$VAR1 = [
'John M. "Jack"',
'Thompson',
'Never Subscribed'
];
But instead it's
$VAR1 = [
'John M. Jack Thompson',
'Never Subscribed'
];
Here's how I'm calling it:
Text::CSV_XS->new(
{
sep_char => "\t",
quote_char => undef,
binary => 1,
}
);
Subject: | test.tsv |