Thread if Abfrage auf Hash value
(19 answers)
Opened by suresh at 2011-12-13 09:46
wo ist denn das problem?
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 # hash mit einem key my %hash = ( foo => 23, ); # hash ohne keys my %hash = (); # hashref mit einem key my $hashref = { foo => 23, }; # hashref ohne keys my $hashref = {}; 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: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |