5 Einträge, 1 Seite |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
use strict; use warnings; sub escaped { my $string = shift; my $count = 0; $count++ if $string =~ /\\$/; $count++ while $` =~ /\\$/ ; return ($count & 1) } ############################# #Aufruf: my $searchstring = '\#\\\#sfdgsdfgdsfg#ggg\\#'; if ($searchstring =~ /#/ and not escaped $`) { print "# gefunden "; }
m~(\\*)#~
while ($s =~ /(\\.|.)/g) { die if $1 eq "#"}
5 Einträge, 1 Seite |