Thread strings in array löschen (19 answers)
Opened by Iggy86 at 2012-08-13 13:46

pq
 2012-08-13 14:35
#160862 #160862
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
oder auch mit dem flip-flop-operator:

Code (perl): (dl )
1
2
3
4
5
6
for my $string (@array) {
    my $x = $string =~ s{ /\* .* }{}x .. $string =~ s{ .* \*/ }{}x;
    if (not $x or $x < 2 or $x =~ m/E0$/) {
        push @new, $string;
    }
}


ist dann aber nicht mehr so gut verständlich ;-)
zum verständnis lass dir $x in jeder iteration ausgeben.
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: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread strings in array löschen