I\'m using Ruby\'s CSV library to parse some CSV. I have a seemingly well-formed CSV file that I created by exporting an Excel file as CSV.
However CSV.open(filen
CSV.open(filen
Stripping \r characters seemed to work for me
CSV.parse(File.read('filename').gsub(/\r/, ' ')) do |row| ... end