Thread Teil-Hash mit Grep auf Keys? (4 answers)
Opened by LanX- at 2008-10-23 04:59

pq
 2008-10-23 15:10
#115719 #115719
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
wenns derselbe hash sein darf:
Code (perl): (dl )
delete @hash{ grep !m/a/, keys %hash };


wenn nicht:
Code (perl): (dl )
my %hash2 = map { m/a/ ? ($_, $hash{$_}) : () } keys %hash;
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Teil-Hash mit Grep auf Keys?