Apparently Paradox outputs CSV data in this dubious style.
BTW, I forgot to mention how pleased I otherwise am with Text::CSV_XS - highly
functional and about 10 times faster then Text::CSV in our environment.
David Pitt
david.pitt@bigpond.com
+61 3 9882 0276
On Wednesday, 28 July 2004 5:33 PM, Text-CSV_XS
[SMTP:bug-Text-CSV_XS@rt.cpan.org] wrote:
Show quoted text>
> Greetings,
> This message has been automatically generated in response to your bug
> report about Text-CSV_XS, a summary of which appears below.
>
> There is no need to reply to this message right now. Your bug in Text-CSV_XS
> has been assigned an ID of [cpan #7149]. Please include the string:
>
> [cpan #7149]
>
> in the subject line of all future correspondence about this issue. To do so,
> you may reply to this message.
>
> Thank you,
> bug-Text-CSV_XS@rt.cpan.org
>
> -------------------------------------------------------------------------
> Text::CSV_XS fails to parse data of the form:
>
> 0,0,0,0,0,0,2476,3674,0,0,0,0,0,""19/07/2004"",,
>
> The reason is the unescaped double quotes around the date, it expects:
>
> 0,0,0,0,0,0,2476,3674,0,0,0,0,0,"""19/07/2004""",,
>
> However Text::ParseWords::quotewords handles it. If Text::CSV_XS fails I then
> try Text::ParseWords::quotewords which handles this quoting style correctly.
>
> This is ugly, it would be better if Text::CSV_XS also handled this style.