- or download this
my $re = join ' ', map "(?= .*? \Q$_\E)", @ARGV;
if ($entry =~ /^ $re/sx) { ... }
- or download this
m{ ^ (?= .*? bill ) (?= .*? clinton ) }xs
- or download this
from the start
fail unless we can find some characters followed by "bill"
_and_ (still from the start)
fail unless we can find some characters followed by "clinton"
succeed