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

Re^3: Extracting text from a line

by almut (Canon)
on Jul 12, 2010 at 07:28 UTC ( [id://848938]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Extracting text from a line
in thread Extracting text from a line

What's the difference, semantically?

Note that in list context (my ($uid) = ...), the match operation returns the captures, so $uid holds the same value as $1.  If there is no match, both values are undef.

Replies are listed 'Best First'.
Re^4: Extracting text from a line
by pemungkah (Priest) on Jul 13, 2010 at 00:37 UTC
    Vivek, I strongly disagree with you here because of the fact that the number variables are very fragile: they are global to every pattern match.

    If someone else comes along and adds (for instance) a"harmless" subroutine call that sometimes does a pattern match of its own between the match and the usage of $1, then the results are unpredictable because the intervening match has reused the global variables.

    If you always capture the value in a separate variable immediately, you're safe from this potential bug.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (7)
As of 2024-04-18 08:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found