http://www.perlmonks.org?node_id=432235


in reply to key-values swapped

You could do

%test = reverse @hash;

but you would have to look out for collisions with the keys, which could cause you to lose values

cheers

thinker

Replies are listed 'Best First'.
Re^2: key-values swapped
by Anonymous Monk on Feb 18, 2005 at 10:02 UTC
    Hi thinker,
    Your solution is good. Thank you.
    Regards,
Re^2: key-values swapped
by Tanktalus (Canon) on Feb 18, 2005 at 15:43 UTC

    Talking about hurting one's head ...

    Reversing a hash, you have to watch out for value collisions which could cause you to lose keys. At least, from the perspective of the original hash. Just trying to think about both hashes at the same time in the context of keys and values is giving me a headache. Where is my caffeine?

    Update for the humour-impaired: This is a joke. Relax. ;-)