in reply to Re: parse CSVin thread parse CSV
There's also AnyData::Format::CSV. Personally, I'm a big fan of the AnyData family. :-)
HTH,
AnyData::Format::CSV uses regular expressions to parse the data, which is much slower than the parser Text::CSV_XS uses in C (XS).
When using CSV data with databases, I'd advice DBD::CSV, which also uses Text::CSV_XS to parse