- or download this
for (qw{dog pig cat horse}) {
/.o${print "$_ gets printed\n";\''}/ and print "$_ matched\n";
...
cat gets printed
horse gets printed
horse matched
- or download this
for (qw{dog pig cat horse}) {
/.o(?{print "$_ gets printed\n"})/ and print "$_ matched\n";
...
dog matched
horse gets printed
horse matched
- or download this
for (qw{dog pig cat horse}) {
/.o(??{print "$_ gets printed\n"; 'g'})/ and print "$_ matched\n";
...
dog gets printed
dog matched
horse gets printed