Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^2: Matching @ in string

by loris (Hermit)
on Nov 22, 2007 at 13:49 UTC ( [id://652370]=note: print w/replies, xml ) Need Help??


in reply to Re: Matching @ in string
in thread Matching @ in string

OK, so I was missing something obvious.

But if I don't want to modify the string by escaping the @ and I want to run program as a one-liner, how do I do it if I can't escape the single quotes as you point out here?

Thanks,

loris


"It took Loris ten minutes to eat a satsuma . . . twenty minutes to get from one end of his branch to the other . . . and an hour to scratch his bottom. But Slow Loris didn't care. He had a secret . . ." (from "Slow Loris" by Alexis Deacon)

Replies are listed 'Best First'.
Re^3: Matching @ in string
by dwu (Monk) on Nov 22, 2007 at 13:52 UTC
Re^3: Matching @ in string
by mwah (Hermit) on Nov 22, 2007 at 14:34 UTC
    ... don't want to modify the string by escaping the @ and I want to run program as a one-liner, how do I do it if I can't escape the single quotes

    Try: ...

    perl -e "print 'h@t'=~ /\@/g"
    or even
    echo 'h@t' | perl -ne 'print /\@/g'

    ... depending on the type of problem you are about to solve.

    Regards

    mwa

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (6)
As of 2024-04-24 12:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found