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


in reply to Re^2: The future of Text::CSV_XS - TODO
in thread The future of Text::CSV_XS - TODO

New snapshot just uploaded, in which eol => $/ is permitted for "\r". That extends successful parsing to line endings in the set undef, "\n", "\r\n", and "\r".


Enjoy, Have FUN! H.Merijn

Replies are listed 'Best First'.
Re^4: The future of Text::CSV_XS - TODO
by tfrayner (Curate) on May 31, 2007 at 09:32 UTC
    Thanks, that's a huge improvement. I'm afraid I've discovered another slight wrinkle, though:
    use strict; use Text::CSV_XS; use IO::File; $/ = "\r"; my $f = IO::File->new_tmpfile; print $f ('a,b,c', $/, '"d","e","f"', $/); seek($f,0,0); my $c = Text::CSV_XS->new({ eol => $/ }); for(0..1){ print join("|",@{ $c->getline($f) })."\n" }
    The first getline works, but the second fails. It looks as though the quote characters are blocking recognition of \r as eol (again, the code here works if $/="\n").

    Cheers,

    Tim

      Thanks for testing further. Above situation fixed, and modified example added to testsuite. snapshot updated.


      Enjoy, Have FUN! H.Merijn
        Perfect - that seems to be working fine now. Thanks very much!

        Tim