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


in reply to TEXT::CSV Error 2032

How did you open the file? e.g. Do you know the exact encoding of the data, as you should then use that knowledge to open the file

my $csv = Text::CSV_XS->new ({ binary => 1, auto_diag => 1 }); open my $fh, "<:encoding(utf-8)", $filename or die "..."; while (my $row = $csv->getline ($fh)) { ...

Is the data "private" or can I get a copy of the file?


Enjoy, Have FUN! H.Merijn