Thread Ist ein "Ast" in einem Hash enthalten (3 answers)
Opened by roli at 2009-12-14 16:51

renee
 2009-12-14 17:09
#129368 #129368
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
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
2
3
4
jars@jars-desktop:~$ perl hash.pl 
Ast Beispiel existiert
Ast Hallo existiert
Ast Welt existiert nicht
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/

View full thread Ist ein "Ast" in einem Hash enthalten