On Mon Aug 01 09:16:35 2016, EDAVIS wrote:
Show quoted text> If reading a Windows-format CSV file on Unix, that is, one with \r\n
> line endings, Text::CSV::Simple fails on each line. It should instead
> cope with either \r\n or \n line endings.
Text::CSV_XS takes care of handling line endings, so any bug you are seeing there is likely best reported over there. It should handline "\r\n" without any issues. If you are still seeing otherwise, you can specify the line-ending by passing 'eol => "\r\n"' to the constructor.