I wanted to test the effect of the /o modifier on embedded code, and was very surprised about the second version using (??{CODE})

(FWIW adding /o makes the first output disappear -like expected- while the second one stays unchanged)

use v5.12; use warnings; say "-"x10, ' ?'; for my $i (1..3) { say "Match $i" if '2' =~ m/(?{say "in $i"})$i/; } say "-"x10, ' ??'; for my $i (1..3) { say "Match $i" if '2' =~ m/(??{say "in $i";$i})/; }

# This is perl 5, version 40, subversion 3 (v5.40.3) built for aarch64 +-android Compilation started at Sat Apr 18 20:38:08 perl tst_re.pl ---------- ? in 2 Match 2 ---------- ?? in 1 in 1 in 2 Match 2 in 3 in 3 Compilation finished at Sat Apr 18 20:38:08, duration 0.03 s

After looking into the docs:

It turns out that there are no guarantees whatsoever about the execution frequency if the regex is not matching.

So my questions are already (kind of) answered.

I'll post it anyway in the hope that it might interest you too.

Cheers Rolf
(addicted to the Perl Programming Language :)
see Wikisyntax for the Monastery

Update

Moved to meditation