Thread strings in array löschen
(19 answers)
Opened by Iggy86 at 2012-08-13 13:46
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: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |