I wanted to test the effect of the /o modifier on embedded code (
context), 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.
The exact rules for how often (?{}) and (??{}) are executed in a pattern are unspecified, and this is even more true of (*{}). In the case of a successful match you can assume that they DWIM and will be executed in left to right order the appropriate number of times in the accepting path of the pattern as would any other meta-pattern. How non- accepting pathways and match failures affect the number of times a pattern is executed is specifically unspecified and may vary depending on what optimizations can be applied to the pattern and is likely to change from version to version
So my questions are already (kind of) answered.
I'll post it anyway in the hope that it might interest you too.
Update
Moved to meditation