Tux / Text-CSV_XS

perl5 module for composition and decomposition of comma-separated values
17 stars 20 forks source link

getline_all does not understand scientific ("e") notation #39

Closed vividsnow closed 2 years ago

vividsnow commented 2 years ago

Hello

Consider input file with 1 billion records:

my $batch = $csv->getline_all ($fh, 0, 1e6) will return all data my $batch = $csv->getline_all ($fh, 0, 1000000) will return 1000000 recs

Tux commented 2 years ago

Thanks for the report. Fixed in 9d094d212382bc36702b73

vividsnow commented 2 years ago

Thank you!