Thread Daten in Array mit Spalten schreiben
(9 answers)
Opened by ElPresidente at 2012-06-05 18:59
ein slice ist ein zugriff auf mehrere elemente eines arrays oder hashes:
Code (perl): (dl
)
1 2 3 4 5 my @part = @array[2, 5, 23..42]; my @values = @hash{qw/ foo bar /}; # gleichbedeutend mit my @part = ($array[2], $array[5], $array[23], usw., $array[42]); my @values = ($hash{foo}, $hash{bar}); ein slice ist kein datentyp oder eine bestimmte art von datenstruktur, sondern im prinzip nur eine praktischere notation des komma-operators. dein dumper zeigt kein slice, sondern einfach eine arrayref mit hashreferenzen als elemente. 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 |