Thread Elegante Syntax für Hash-Def
(11 answers)
Opened by bianca at 2010-03-27 12:41 2010-03-27T11:58:11 biancaIch 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/ |