Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Differences between qq() and

by Beatnik (Parson)
on Dec 09, 2001 at 18:37 UTC ( [id://130523]=note: print w/replies, xml ) Need Help??


in reply to Differences between qq() and ""

If you're using quotes (or double quotes, or a bunch of other metachars) withing quotes (or doublequotes etc), you have to escape em. qq() allows you to use doublequotes within doublequotes (since qq() are actually doublequotes).

On windows if you want to use -e you HAVE to use doublequotes (unlike UN*X, where single quotes work too). If you want to use doublequotes within that line, escape them.
perl -e "$_=\"1_000\";$_++;print" If you'd wanna use a ) within the qq()'ed statement, you'd have to escape it too. Note that qq() works with a few other chars too, such as qq[], qq{}, qq// and even qq##. And yes, that ALSO works for q(), qr(), qx() and qr().

Greetz
Beatnik
... Quidquid perl dictum sit, altum viditur.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (6)
As of 2024-04-18 11:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found