Thread RegExp matcht nicht (3 answers)
Opened by Opaxtl at 2007-09-09 01:07

GwenDragon
 2007-09-09 01:50
#99229 #99229
User since
2005-01-17
14784 Artikel
Admin1
[Homepage]
user image
In $foo muss ein regex stehen.
Aber du hast $foo nicht als Regex gequotet.

Code: (dl )
1
2
3
4
5
my $foo = qq(<a href="/cgi-bin/lesen.cgi?benutzer=<!--#echo var='REMOTE_USER' -->&datei=simonsalbum/00107.html">);
my $bar = qq(<h4><img src="../images/simonsalbum/neu.jpg" width="69" height="69" alt=""><a href="/cgi-bin/lesen.cgi?benutzer=<!--#echo var='REMOTE_USER' -->&datei=simonsalbum/00107.html">Test</a> (Änderung)</h4>\n);
if ($bar =~ m(\Q$foo\E)) {
die "geht doch";
}

View full thread RegExp matcht nicht