in reply to Re: Text::CSV
in thread Text::CSV
Really nifty if you have to parse a CSV file with French text with accented characters and newlines in it...use Text::CSV_XS; $csv = Text::CSV->new({binary => 1}); ... $csv->parse($_); @fields = $csv->fields();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Text::CSV
by AssFace (Pilgrim) on May 20, 2004 at 23:21 UTC |