Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^4: Filtering unwanted chars from input field

by johngg (Canon)
on Dec 18, 2012 at 14:14 UTC ( [id://1009372]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Filtering unwanted chars from input field
in thread Filtering unwanted chars from input field

That will work ok.

$ perl -E ' > @data = ( > q{Hello, world!}, > q{te-st%$/*.}, > q{All_of_this_is_OK.}, > q{!@#$%^&*()12345}, > ); > say for map { tr{A-Za-z0-9_.-}{}cd; $_ } @data;' Helloworld te-st. All_of_this_is_OK. 12345 $

Cheers,

JohnGG

Replies are listed 'Best First'.
Re^5: Filtering unwanted chars from input field
by Anonymous Monk on Dec 19, 2012 at 20:51 UTC
    What is I want to allow spaces as well? \s+ does not work.

      The left hand side of the tr is not a regular expression. Just include a real space in the character list.

      $ perl -E ' > @data = ( > q{Hello, world!}, > q{te-st%$/*.}, > q{All_of_this_is_OK.}, > q{!@#$%^&*()12345}, > ); > say for map { tr{A-Za-z0-9_. -}{}cd; $_ } @data;' Hello world te-st. All_of_this_is_OK. 12345 $

      Cheers,

      JohnGG

Log In?
Username:
Password:

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

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

    No recent polls found