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

Re: Variable scope headaches

by jdporter (Paladin)
on Jul 26, 2012 at 16:29 UTC ( [id://983867]=note: print w/replies, xml ) Need Help??


in reply to Variable scope headaches

Trying to use a variable as a variable name (i.e. "symbolic references") is generally considered a bad idea.

There is an item in the perlfaq about this: How can I use a variable as a variable name?. I highly suggest you read this.

It is considered critical enough that it is explicitly detected and forbidden by use strict; - the inclusion of which is universally considered good practice.

Instead, use a hash variable:

my %tag_value; foreach ( @tagvalue ) { if ( /([\w,_]+):([0-9]+)/ ) { $tag_value{$1} = $2; } else { die "Failed to assign value to $1\n"; } }

By the way I think your die statement is going to have a problem, in that $1 will not be set (at least not to what you think) if it ever gets executed. If the pattern match (regex) fails to match, then none of the positional variables ($1, etc.) get set. Instead, you might say something like:

die "Failed to match tag/value in '$_'\n";
I reckon we are the only monastery ever to have a dungeon stuffed with 16,000 zombies.

Replies are listed 'Best First'.
Re^2: Variable scope headaches
by nikmit (Sexton) on Jul 27, 2012 at 07:49 UTC
    Thanks jdporter

    I actually had read that perlfaq item, obviously it didn't quite sink in :) Works now, and code looks better.

    Thanks for pointing out the 'die' statement error too. I have removed that block of code now but clearly its one to watch out for.

    nik

Log In?
Username:
Password:

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

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

    No recent polls found