[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Removing ^M character from text

John Victor

11/28/2008 7:57:00 PM

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 :-)

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

vic
--
Posted via http://www.ruby-....

7 Answers

Sebastian Hungerecker

11/28/2008 8:06:00 PM

0

John Victor 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
--
Jabber: sepp2k@jabber.org
ICQ: 205544826

Michael Monaghan

11/28/2008 8:07:00 PM

0

[Note: parts of this message were removed to make it a legal post.]

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

On Fri, Nov 28, 2008 at 2:57 PM, John Victor <john@sflistdb.com> wrote:

> 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 :-)
>
> What is the best way to find and remove the pesky ^M character from
> text?
>
> vic
> --
> Posted via http://www.ruby-....
>
>

Robert Dober

11/28/2008 9:00:00 PM

0

On Fri, Nov 28, 2008 at 8:57 PM, John Victor <john@sflistdb.com> wrote:
> 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 :-)
>
> What is the best way to find and remove the pesky ^M character from
> text?
>
> vic
> --
> Posted via http://www.ruby-....
>
>
A simpler method, applicable if the c-m is coming from line ends

ruby -ne 'puts chomp' xxx > yyy

HTH
Robert


--=20
Ne baisse jamais la t=EAte, tu ne verrais plus les =E9toiles.

Robert Dober ;)

John Victor

11/29/2008 12:21:00 AM

0

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

--
Posted via http://www.ruby-....

Tim Hunter

11/29/2008 1:06:00 AM

0

John Victor 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.

--
RMagick: http://rmagick.ruby...

John Victor

11/29/2008 5:37:00 PM

0

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 Hunter 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
--
Posted via http://www.ruby-....

Robert Dober

11/29/2008 6:37:00 PM

0

On Sat, Nov 29, 2008 at 1:21 AM, John Victor <john@sflistdb.com> wrote:
> Thanks alot everyone...I got it working.
>
Rubyquiz can help here ;)
http://splatbang.com/rubyquiz/quiz.rhtml?id=3D1...
Cheers
Robert



--=20
Ne baisse jamais la t=EAte, tu ne verrais plus les =E9toiles.

Robert Dober ;)