in reply to Re^2: Concerning Text::CSV_XS getline in while loop
in thread Concerning Text::CSV_XS getline in while loop
My bet would be you forgot to read the documentation, and did not pass binary => 1 in the constructor:
my $csv = Text::CSV_XS->new ({ binary => 1, auto_diag => 1 });
|
|---|