- or download this
m/^(?! $a ) .*? $end/sx
- or download this
m/^(?! .*? $a ) .*? $end/sx
- or download this
$_ = '...</code> ... foo';
...
print "Match\n";
}
# no match
- or download this
m/^ (?: . (?! $a ) )* $end /sx
- or download this
$_ = 'foo...</code> ... ';
...
print "Match\n";
}
# match
- or download this
m/^ (?: (?! $a ) . )* $end /sx