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?.

link|improve this question

feedback

8 Answers

^M is carriage return. You can do this:

$str =~ s/\r//g
link|improve this answer
feedback

Or a 1-liner:

perl -p -i -e 's/\r\n$/\n/g' file1.txt file2.txt ... filen.txt
link|improve this answer
1  
It's so easy to remember this one as Perl Pie. – dreamlax Mar 16 '09 at 19:02
@dreamlax: haha perl pie! – Frank Mar 18 '09 at 2:18
feedback
up vote 7 down vote accepted

You found out you can also do this:

$line=~ tr/\015//d;

link|improve this answer
This worked perfectly for me! – onaclov2000 Mar 10 '11 at 20:00
not as readable as \r - anyone looking at that (or yourself in a year's time) would be glad of a comment stating what it does – plusplus Jun 21 '11 at 8:12
feedback

slightly unrelated, but to remove ^M from the command line using perl, do this

perl -p -i -e "s/\r\n/\n/g" file.name
link|improve this answer
feedback

To convert DOS style to UNIX style line endings:

for ($line in <FILEHANDLE>) {
   $line =~ s/\r\n$/\n/;
}

Or, to remove UNIX and/or DOS style line endings:

for ($line in <FILEHANDLE>) {
   $line =~ s/\r?\n$//;
}
link|improve this answer
wouldn't that remove the newlines, too? – Can Berk Güder Mar 16 '09 at 14:54
I guess that depends on your goal. I edited to show both strategies. – spoulson Mar 16 '09 at 15:23
feedback

In vi hit :

then s/Contrl-VControl-M//g

control-v control-m are obviously those key's dont' spell it out.

link|improve this answer
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

link|improve this answer
Hello Dan, welcome to Stack Overflow. You asked a question in the answer field, but this site does not work this way. To give your problem the appropriate attention, please open a new question. You can delete your initial posting later. Take the time to familiarise yourself with how SO works. – daxim Jul 9 '10 at 15:39
feedback

Can't you just chomp it?

chomp($str)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.