in reply to The future of Text::CSV_XS - TODO
I don't know what the source of the problem is, but I'm posting to note that the Issues link from the CPAN page is broken. I was impressed to see that there was only one issue, and wanted to check out what it might be.
And also, I use Text::CCSV in my current work, and it's awesome to use. I had been using just
but replaced that withprint { $csv_files{$table} } join( ',', @{ $data{$table} } ) . "\n";
and it was delightful to look at the result, and see that the data files looked almost exactly the same -- except just a few of the strings were quoted. So beautiful.$csv_obj->print ( $csv_files{$table}, $data{$table} );
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: The future of Text::CSV_XS - TODO
by Tux (Canon) on Jul 24, 2025 at 15:23 UTC | |
by talexb (Chancellor) on Jul 25, 2025 at 13:19 UTC | |
by Tux (Canon) on Jul 27, 2025 at 10:17 UTC |