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

Gast Gast
 2005-04-17 22:38
#53876 #53876
Code (perl): (dl )
1
2
3
4
5
6
#!/usr/bin/perl
use warnings;
use strict;
my %a = (a => 'b', c => 'd', e => 'f');
my %b = reverse %a;
print $b{f}, "\n";

Code: (dl )
1
2
$ ./hashtest.pl
e

Beachte aber, dass du Probleme bekommst, wenn ein Value mehr als einmal vorkommt.

View full thread schlüssel im hash ermitteln