Thread Hash mit Zahl als Key? (8 answers)
Opened by mustermann at 2007-09-12 16:32

renee
 2007-09-13 17:52
#99443 #99443
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Ein slice ist so etwas:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
use Data::Dumper;

my @array = (1..100);

# speichere das 2., 7., 10., 14. Element aus @array
# in @tmp
my @tmp = @array[1,6,9,13]; 

print Dumper \@tmp;
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 Hash mit Zahl als Key?