Thread Elegante Syntax für Hash-Def (11 answers)
Opened by bianca at 2010-03-27 12:41

renee
 2010-03-27 13:16
#135351 #135351
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
2010-03-27T11:58:11 bianca
2010-03-27T11:51:58 esskar
wie benutzt du hash-of-hash und nicht hash-of-array?

Ist unübersichtlich. Meine Werte sind nicht so kurz wie foo und bar.
Ich würde es trotzdem machen...

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl -w
use strict;
use warnings;
use Data::Dumper;
my %tabelle;
foreach my $line (split /\n/,<<KONSTANTE
foo                             N
bar                             A
KONSTANTE
) {
    my ($head,$typ) = split /\t+/, $line;
    push @{ $tabelle{head} }, $head;
    push @{ $tabelle{typ} }, $typ;
}
print Dumper(%tabelle);
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 Elegante Syntax für Hash-Def