in reply to Re: How do I move specific values from one hash to another?
in thread How do I move specific values from one hash to another?

I prefer this:

$newhash{$key}= delete $oldhash{$key}; #or @newhash{@keys}= delete @oldhash{@keys};

        - tye (but my friends call me "Tye")

Replies are listed 'Best First'.
Re: (tye)Re: How do I move specific values from one hash to another?
by merlyn (Sage) on May 15, 2001 at 00:03 UTC