Thread schlüssel im hash ermitteln (8 answers)
Opened by Froschpopo at 2005-04-17 19:52

Taulmarill
 2005-04-18 13:50
#53879 #53879
User since
2004-02-19
1750 Artikel
BenutzerIn

user image
ich hab mal aus langeweile ne lösung mit grep gemacht. evtl. kann das ja noch wer optimieren:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict;
use warnings;

my %hash = (
foo => "bar",
bar => "baz",
baz => "bar"
);

print join ", ", find_key( \%hash, 'bar' );
print "\n";

sub find_key {
my ( $hash, $val ) = @_;
grep { $$hash{$_} eq $val } keys %$hash;
}
$_=unpack"B*",~pack"H*",$_ and y&1|0& |#&&print"$_\n"for@.=qw BFA2F7C39139F45F78
0A28104594444504400 0A2F107D54447DE7800 0A2110453444450500 73CF1045138445F4800 0
F3EF2044E3D17DE 8A08A0451412411 F3CF207DF41C79E 820A20451412414 83E93C4513D17D2B

View full thread schlüssel im hash ermitteln