in reply to Bad Text::CSV_XS parameter

I am unable to reproduce your findings with version 1.17 of Text::CSV_XS:

$ cat ddd.CSV "01012019","1816" $ cat 11116012.pl use strict; use warnings; use Text::CSV_XS; open my $fh, "<:encoding(utf8)", "ddd.CSV" ; my $csvfile=Text::CSV_XS->new (); until (eof $fh) { if($csvfile->parse(<$fh>)) { my @resu=$csvfile->fields(); print STDERR $resu[0],$resu[1]; } else { my $err = $csvfile->error_diag(); print STDERR "Erreur : $err\n"; } } $ perl 11116012.pl 010120191816$

Replies are listed 'Best First'.
Re^2: Bad Text::CSV_XS parameter
by pcouderc (Monk) on Apr 24, 2020 at 13:04 UTC
    how strange !!!!!!

    I am using debian, it is :

    $VERSION = "1.38";