Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Bug? Use of uninitialized value $1 in substitution iterator

by bellaire (Hermit)
on Mar 04, 2009 at 13:01 UTC ( [id://748127]=note: print w/replies, xml ) Need Help??


in reply to Bug? Use of uninitialized value $1 in substitution iterator

$1 is undefined, and any use of undef will trigger the warning. You can use the following regex if you don't want to turn the warnings off:
s{^(?:aa(bb))?.*}{defined($1)?$1:q{}}ei;
The e switch lets you use code for the replacement, so you can test whether $1 is defined before using it, and if it's not defined, use the empty string instead.

Log In?
Username:
Password:

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

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

    No recent polls found