4 Einträge, 1 Seite |
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($foo)) { die "geht doch"; }
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";
}
$bar =~ m/$foo/
$bar =~ m/\Q$foo\E/
if ( index($bar, $foo) >= 0 ) {...
4 Einträge, 1 Seite |