Thread Nur die ersten x in einem Array (10 answers)
Opened by Gast at 2008-10-23 00:55

Gast Gast
 2008-10-23 09:27
#115714 #115714
wie von LanX nur ohne Modul:

Code (perl): (dl )
for my $i (@array[0..(@array<10?$#array:10)]){ }


manachmal ist das auch ganz praktisch:
Code (perl): (dl )
1
2
3
4
5
6
7
my @temp=@array;
while(my $i=shift(@temp))
{
  last if(@temp+10<@array);
  # ...
}
undef(@arraytemp);

View full thread Nur die ersten x in einem Array