Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^6: The $_ Special Variable

by chuloon (Initiate)
on Jun 21, 2011 at 18:32 UTC ( [id://910791]=note: print w/replies, xml ) Need Help??


in reply to Re^5: The $_ Special Variable
in thread The $_ Special Variable

What do the strict and warnings commands do? And what is the purpose of my before the objects? What does it do? Also, what is the purpose of my $string = shift;? I don't understand the if (s/\Q$string\E/($string)/g) { conditional either. Thank you for all of your help

Replies are listed 'Best First'.
Re^7: The $_ Special Variable
by wind (Priest) on Jun 21, 2011 at 19:43 UTC
    What do the strict and warnings commands do?

    use strict requires that all variables be declared with either my or our. This is the number one thing you can do to ensure you're code is well made and without errors. use warnings is essentially an extension that monitors your code for unintended errors.

    And what is the purpose of my before the objects? What does it do?

    First of all, those aren't objects, they're simple variables. my is used to declare your variables and is useful for limiting their scope. If you were to mistype a variable or use the wrong type, use strict would alert you to the error

    Also, what is the purpose of my $string = shift;?

    If you read the documentation for shift, you'll see that in this instance it's equivalent to:

    my $string = shift @ARGV;

    Previously, you hardcoded $ARGV[0] in multiple places. It's much better to assign your script's parameters to variables as a way of documenting your code.

    I don't understand the if (s/\Q$string\E/($string)/g) { conditional either.

    \Q...\E is a shortcut syntax for quotemeta. This escaped any regex special characters in your $string, so that it would be treated as a literal value.

Re^7: The $_ Special Variable
by ww (Archbishop) on Jun 22, 2011 at 00:49 UTC
    With questions like these, perhaps the most general answer is...
    Learning Perl

    readily available (USD 30, +//-) from vendors who include the publisher, O'Reilly, and such esteemed booksellers as Amazon, Walmart, and -- very likely -- your local independent bookstore.

    Update/afterthought: your OP refers to the symbol pair 'questionmark''underscore'... and so do your further responses when Monks offering help plainly refer to the pair 'dollarsign''underscore'... which is not at all the same thing.
    Does your local keyboard omit the "$" sign?

      I don't know why it's ?_ now. I wasn't paying much attention to it, so I may have missed a few keys, but the quotes made by other people suggest otherwise, so maybe something got changed somehow. I don't know.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (3)
As of 2024-04-25 07:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found