NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Standards (Score:2)
Second, don't use Text::CSV. Use Text::CSV_XS [cpan.org]. It's got far more parameters for your tuning enjoyment.
--
xoa
Re:Text::CSV_XS (Score:1)
Usefull, but I do have a hard time explaining why you have to use binary mode to write non-binary data!
I would love for it to have an eight bit mode, where control characters are forbidden, ie. 0x00-0x17, 0x7f-0x97 and 0xff (if I got my ranges right). Of course this would annoy M$-users, that have some printable characters embedded in the high control range (0x80-0x9f
Re:Text::CSV_XS (Score:1)
Well it does the job for me.
With regards to the control characters, I did think about that, but decided to just allow them. I may change it later though.
Reply to This
Parent