in reply to Re: Successful CSV reader?
in thread Successful CSV reader?

The problem with that module that I've found is that there's no code to handle multi-line strings. It's designed around parsing one line at a time, but what if that line is part of a multi-line? Didn't find one that did handle it, so I wrote my own.

Replies are listed 'Best First'.
Re^3: Successful CSV reader?
by salva (Canon) on Apr 26, 2005 at 11:07 UTC
    Text::CSV_XS has a binary mode that allows for binary data (including newline chars) inside quotes. Have you tried it?