//flex table opened by JP

Click to See Complete Forum and Search --> : Perl and ^M


jjinno
04-22-2006, 12:48 PM
I cant for the life of me figure out how to get rid of a ^M in a string that I am parsing.

I have tried:

s/\^M//g;
s/^M//g;
s/\r\n/\n/g;
s/\r//g;

** and yes the ^M is a control char, not just me typin ^ and M. **

Any ideas?