Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Dereferencing a Hash of Arrays

by philipbailey (Curate)
on Jun 14, 2011 at 07:19 UTC ( [id://909538]=note: print w/replies, xml ) Need Help??


in reply to Dereferencing a Hash of Arrays

Your problem is that the values in hashes can only be scalars in Perl. However references are scalars, so you can use references to arrays:

my %alphabet = ( a => \@atags, b => \@btags, ); say for values %alphabet;

Replies are listed 'Best First'.
Re^2: Dereferencing a Hash of Arrays
by toro (Beadle) on Jun 14, 2011 at 07:27 UTC

    Hi Philipbailey, I tried that earlier but man perlref told me I could abbreviate that as my alphabet = \(.... Are they not the same?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (5)
As of 2024-04-20 01:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found