Thread for-Schleife $i variabel gestalten
(12 answers)
Opened by Alvin at 2007-12-28 12:44
Wenn Du splice benutzen willst, musst Du allerdings das Array umgekehrt durchlaufen, sonst gibt es Probleme...
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 #!/usr/bin/perl use strict; #use warnings; use Data::Dumper; my @array = (1..10); for my $i ( 0..$#array ){ if( $array[$i] % 2 == 0 ){ splice @array,$i,1; } else{ print $array[$i],"\n"; } } print "=" x 50, "\n"; @array = (1..10); for my $i ( reverse 0..$#array ){ if( $array[$i] % 2 == 0 ){ splice @array,$i,1; } else{ print $array[$i],"\n"; } } Ausgabe: 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/ |