I have a script that is appending new fields to an existing CSV, however ^M characters are appearing at the end of the old line so the new fields end up on a new row instead of the same one. How do you remove the ^M characters from a csv file using Perl?.
|
feedback
|
|
Or a 1-liner:
| |||||||
feedback
|
|
You found out you can also do this: $line=~ tr/\015//d; | |||||
feedback
|
|
slightly unrelated, but to remove ^M from the command line using perl, do this
| |||
|
feedback
|
|
To convert DOS style to UNIX style line endings:
Or, to remove UNIX and/or DOS style line endings:
| |||||
|
feedback
|
|
In vi hit then s/Contrl-VControl-M//g control-v control-m are obviously those key's dont' spell it out. | |||
|
feedback
|
|
What if I had a record in a otherwise good file that had a carriage return in it. Ex: 1,2,3,4,5 ^M ,6,7,8,9,10 and I wanted to make it 1,2,3,4,5,6,7,8,9,10 | |||
feedback
|