Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: removing duplicate letters

by plaid (Chaplain)
on Jun 18, 2000 at 23:50 UTC ( [id://18728]=note: print w/replies, xml ) Need Help??


in reply to removing duplicate letters

This seems to work:
s/(.)\1/$1/g;
The tr operator does what you want, except it squashes all duplicates, not just two. For reference though:
tr/a-zA-Z//s;

Replies are listed 'Best First'.
RE: Re: removing duplicate letters
by Ovid (Cardinal) on Jun 19, 2000 at 00:50 UTC
    Actually, the dot operator doesn't fit his definition. eduardo specified letters so we should change it to
    s/(\w)(\1)/$1/g;
    Update: Oops! takshaka exposed me for the fake I am! (see reply below)
      If we're going to be pedantic, \w matches nonletters as well. Use a character class with the appropriate definition of "letters".

      s/([a-zA-Z])\1/$1/g;

        if you want to talk about pedantic, your letters may not be the letters everyone else is using, so to take the locale into effect, you could do something like the following:

        s/([^\W\d_])\1/$1/g
RE: Re: removing duplicate letters
by eduardo (Curate) on Jun 19, 2000 at 00:01 UTC
    damn it ;) that's it, that's what i wanted...
    s/(.)\1/$1/g;
    oh well, what i kept on trying was:
    s/(.)\$1/$1/g;
    and that sure as hell didn't work ;) thank you very much!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://18728]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-04-19 23:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found