Thread unless-Funktion/ Fehler im RegEx? (4 answers)
Opened by Gast at 2006-06-08 21:00

pq
 2006-06-08 21:50
#67133 #67133
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
[quote=renee,08.06.2006, 19:20]
Code: (dl )
1
2
3
4
5
foreach my $element (@help) {               
       if($data !~ /lc($element)/e) {
           push @more_candidates, $element;
       }      
}
[/quote]
ähm, die regex an sich kennt keinen e-modifier, der ist nur für
substitutions gedacht.
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 unless-Funktion/ Fehler im RegEx?