Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Getting Keys of Hash from Values

by tmoertel (Chaplain)
on Nov 16, 2005 at 21:20 UTC ( [id://509203]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my %hash          = ( a => 1, b => 2, c => 3 );
    my %inverted_hash = reverse %hash;
    
  2. or download this
    use Data::Dumper;
    print Dumper(\(%hash, %inverted_hash));
    ...
    #           '3' => 'c',
    #           '2' => 'b'
    #         };
    
  3. or download this
    %hash          = ( a => 1, b => 2, c => 2 );
    %inverted_hash = reverse %hash;
    ...
    #           '1' => 'a',
    #           '2' => 'c'
    #         };
    
  4. or download this
    print "keys were lost during inversion\n"
        if keys %inverted_hash < keys %hash;
    

Log In?
Username:
Password:

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

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

    No recent polls found