in reply to Re^2: Normal regexes stop working
in thread Normal regexes stop working
yes? That being the case, then do this for debugging:$x =~ /$y/;
So this will print out something every time they don't match, which is the case you are looking for, right?my $match = $x =~ /$y/; printf "x=%s, y=%s\n", $x, $y unless $match;
|
|---|