Removing ^M character from text

I have some text that I just realized is screwing everything up because
it contains the ^M character (control-M). I have tried using all kinds
of regexp expressions to find and remove it but it is evasive :slight_smile:

What is the best way to find and remove the pesky ^M character from
text?

vic

John V. wrote:

What is the best way to find and remove the pesky ^M character from
text?

text.delete!("\r")
or if you prefer:
text.delete!("\C-M")

HTH,
Sebastian

Hi John,
str = “123^M56”
newstr = str.sub(/^M/, ‘’)

Note - for the substitution, you enter the ‘^M’ character using Ctrl+v+m
(-
or at least I do on Solaris.)

~mm

Thanks alot everyone
I got it working.

I never realized how badly ^M was screwing me up all these years when
trying to match with regular expressions. I wish there was a way to see
all the end of the line characters, carriage returns and new line
without having to guess if they exist and using trial and error for
hours when doing regexp matches.

vic

John V. wrote:

Thanks alot everyone
I got it working.

I never realized how badly ^M was screwing me up all these years when
trying to match with regular expressions. I wish there was a way to see
all the end of the line characters, carriage returns and new line
without having to guess if they exist and using trial and error for
hours when doing regexp matches.

vic

On Linux, OS X, and other *ix systems, you can use cat -v. In Ruby,
String#inspect will show special characters escaped, so you can just use

p str

to see special characters. A newline shows up as “\n”, for example.

On Fri, Nov 28, 2008 at 8:57 PM, John V. [email protected] wrote:

A simpler method, applicable if the c-m is coming from line ends

ruby -ne ‘puts chomp’ xxx > yyy

HTH
Robert

–
Ne baisse jamais la tĂȘte, tu ne verrais plus les Ă©toiles.

Robert D. :wink:

Thanks for the String#inspect, that really helps.
I am trying to do a regexp match on the first line only of this text, I
used the output from text.inspect:

“CPU utilization for five seconds: 4%/1%; one minute: 2%; five minutes:
2%\r\n”
“PID QTy PC Runtime (ms) Invoked uSecs Stacks TTY
Process\r\n”
“1 Cwe 40E8BAAC 80 1574 50 5560/6000 0 Chunk
Manager \r\n”
“2 Csp 41AD34D0 107060 19504749 5 2600/3000 0 Load Meter
\r\n”
“3 Mwe 41E1244C 8 8260 0 5136/6000 0 MPLS MIB
traps \r\n”
“4 Mwe 403D9860 1580 812729 1 5544/6000 0 DHCPD
Timer \r\n”
“5 Lst 40E9F268 211247688 17501448 12070 5616/6000 0 Check
heaps \r\n”

I thought it would be as simple as:

    /^CPU\sutilization.*\r\n/

but this returns all the text I have shown above. Why is it that my
regexp doesn’t stop at the “\n”?

thanks

vic

Tim H. wrote:

On Linux, OS X, and other *ix systems, you can use cat -v. In Ruby,
String#inspect will show special characters escaped, so you can just use

On Sat, Nov 29, 2008 at 1:21 AM, John V. [email protected] wrote:

Thanks alot everyone
I got it working.

Rubyquiz can help here :wink:
http://splatbang.com/rubyquiz/quiz.rhtml?id=171_hexdump
Cheers
Robert

–
Ne baisse jamais la tĂȘte, tu ne verrais plus les Ă©toiles.

Robert D. :wink: