I am trying to load a csv file with carriage return line endings using CSV Reader. (Unfortunately, Mac Excel exports csv files using carriage returns. I know I can convert line endings, but our users would prefer using the files directly from Excel.)
I thought that changing Row Delimiter from the default \n to \r would work, but it doesn't. I get an empty table, with all cells as column headers. I've attached an example file (had to change extension to txt to be able to upload it).
Perhaps You should try unix/linux version of carriage return (as I remember correctly windows version is cr lf and unix is only lf - which is line feed - and a code is :0x0A), source:
To be honest i tried it and the only solution is to change cr to cr lf , open in xls and save again as csv. Maybe some JAVA parsing or python/perl etc.