Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Need a one liner

by crabbdean (Pilgrim)
on Jul 17, 2004 at 10:31 UTC ( [id://375221]=note: print w/replies, xml ) Need Help??


in reply to Need a one liner

You want the translation operator:
$a =~ tr/\W_//g;
or you can also use the substitution operator but specifying a choice: UPDATE to CODE: (opps)
$a =~ s/(\W|_)//g;
UPDATE: It might also be worth your while to read the perlop documentation

Dean
The Funkster of Mirth
Programming these days takes more than a lone avenger with a compiler. - sam
RFC1149: A Standard for the Transmission of IP Datagrams on Avian Carriers

Replies are listed 'Best First'.
Re^2: Need a one liner
by davido (Cardinal) on Jul 17, 2004 at 15:30 UTC
    $a =~ r/\W_//g;

    There is no /g modifier for the tr/// operator. The transliteration operator also does not use regexp-like predefined character classes, such as \W. You probably meant something like:

    $string =~ tr/a-zA-Z0-9.//cd;

    This says to take the complement of the list created by the ranges a-z, A-Z, and 0-9, and delete anything not found among that range. Note, I didn't specifically deal with the underscore character, because with this method, the fact that I didn't include it is enough to get it deleted. Think of the list of things on the left of the tr/// operator as the list of what to keep, because we used the /c modifier. Everything else gets deleted, because we used the /d modifier.

    Updated: Added the '.' character to the "keep these" character list to accommodate the fact tht the OP revised his question later in the thread asking to also preserve the dot character.


    Dave

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (2)
As of 2024-04-26 04:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found