Thread for-Schleife $i variabel gestalten (12 answers)
Opened by Alvin at 2007-12-28 12:44

renee
 2007-12-28 21:03
#104225 #104225
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
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:

Code: (dl )
1
2
3
4
5
6
7
8
C:\>splice.pl
1
==================================================
9
7
5
3
1
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 for-Schleife $i variabel gestalten