Thread Ist ein "Ast" in einem Hash enthalten
(3 answers)
Opened by roli at 2009-12-14 16:51
Also bei mir mach exists was es soll:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 #!/usr/bin/perl use strict; use warnings; my %hash = ( ebene1 => { Beispiel => 1, Hallo => 1 } ); for my $key ( qw(Beispiel Hallo Welt) ) { print "Ast $key existiert "; print "nicht" if not exists $hash{ebene1}{$key}; print "\n"; } Code: (dl
)
1 jars@jars-desktop:~$ perl hash.pl OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |