Thread datei in array einlesen zwecks mailversand
(6 answers)
Opened by ertox at 2010-08-06 20:24 2010-08-07T04:45:09 renee nicht gut. funktionen wie join sollte man in solchen konstrukten immer mit klammern aufrufen. warum? weil man sich jederzeit ueberlegen koennte, noch einen weiteren key einzufuegen: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 use Data::Dumper; my @text = qw/ a b c /; my %hash = ( foo => 1, bar => join ",", @text, baz => 2, ); print Dumper \%hash; __END__ $VAR1 = { 'bar' => 'a,b,c,baz,2', 'foo' => 1 }; vs. Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 perl -wle'use Data::Dumper; my @text = qw/ a b c /; my %hash = ( foo => 1, bar => join(",", @text), baz => 2, ); print Dumper \%hash; __END__ $VAR1 = { 'bar' => 'a,b,c', 'baz' => 2, 'foo' => 1 }; 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 |