Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Can I concatenate variables?

by LanX (Saint)
on Jan 26, 2013 at 19:58 UTC ( [id://1015534]=note: print w/replies, xml ) Need Help??


in reply to Can I concatenate variables?

> Is it impossible to use variables within variables?

Yes, but for good reasons "symbolic references" are deactivated under strict!

Better use hashes:

my %line; for my $alpha ( "a" .. "b" ) { $line{$alpha} = "somenum"; }

If you still insist to use it, search for "variables as variable names perl".

EDIT: second google hit Why it's stupid to `use a variable as a variable name' from 1998!!! =)

Cheers Rolf

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (3)
As of 2024-04-19 17:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found