http://qs321.pair.com?node_id=392006


in reply to Selecting particular key-value pairs in hashes

Non-destructively:

my %hash2 = map {$_ => $hash{$_}} grep {/^\d+_\d+$/} keys %hash;



pbeckingham - typist, perishable vertebrate.

Replies are listed 'Best First'.
Re^2: Selecting particular key-value pairs in hashes
by Aristotle (Chancellor) on Sep 18, 2004 at 20:34 UTC

    You can pick more than one value at a time out of a hash — see merlyn's code and gaal's remark.

    my %hash2 = @hash{ grep /\d+_\d+/, keys %hash };

    Update: thanks to bobf for notifying me that this code makes, uh, very little sense. Here's a hash slice incantation that actually works:

    my %hash2; @hash2{ @$_ } = @hash{ @$_ } for [ grep /\d+_\d+/, keys %hash ]; # or more verbosely my %hash2; { my @key = grep /\d+_\d+/, keys %hash; @hash2{ @key } = @hash{ @key }; }

    Makeshifts last the longest.