Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: duplicate keys on hash

by Happy-the-monk (Canon)
on Feb 11, 2015 at 13:21 UTC ( [id://1116329]=note: print w/replies, xml ) Need Help??


in reply to Re: duplicate keys on hash
in thread duplicate keys on hash

While replying to above Anonymonk I am actually clarifying to OP

But I don't see how(in example) typing in the "2" would pull up both BBB AND EEE

The possibly missing information is the syntax used above to treat the hash value - spelled out $hash{$key} - as if it were a plain array is to put it inside this thingy @{ ... } instead of the dots.

You have been shown that it gets into the hash value with the simple push function.

Getting stuff out works the same way:

foreach my $key ( keys %hash ) { foreach my $value ( @{ $hash{$key} } ) { print $key, ": ",$value, "\n" # or whatever you want to do. } }

Cheers, Sören

Créateur des bugs mobiles - let loose once, run everywhere.
(hooked on the Perl Programming language)

Log In?
Username:
Password:

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

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

    No recent polls found