summaryrefslogtreecommitdiff
path: root/pod/perlreref.pod
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-10-27 08:23:01 -0600
committerKarl Williamson <khw@cpan.org>2019-10-31 18:49:15 -0600
commitb98b45946c976c326f3bfd53f1e3519ed9ca2be4 (patch)
tree31e50ff380e5d695de5953e67a65435e181542cc /pod/perlreref.pod
parent49e19b770ea6cfa141e896d9b45613db3dd05324 (diff)
downloadperl-b98b45946c976c326f3bfd53f1e3519ed9ca2be4.tar.gz
Accept experimental alpha_assertions feature
Diffstat (limited to 'pod/perlreref.pod')
-rw-r--r--pod/perlreref.pod14
1 files changed, 9 insertions, 5 deletions
diff --git a/pod/perlreref.pod b/pod/perlreref.pod
index b0c3f6b97a..1486fe7f46 100644
--- a/pod/perlreref.pod
+++ b/pod/perlreref.pod
@@ -234,15 +234,19 @@ There is no quantifier C<{,n}>. That's interpreted as a literal string.
(?:...) Groups subexpressions without capturing (cluster)
(?pimsx-imsx:...) Enable/disable option (as per m// modifiers)
(?=...) Zero-width positive lookahead assertion
- (?*pla:...) Same; avail experimentally starting in 5.28
+ (?*pla:...) Same, starting in 5.32; experimentally in 5.28
+ (?*positive_lookahead:...) Same, same versions as *pla
(?!...) Zero-width negative lookahead assertion
- (?*nla:...) Same; avail experimentally starting in 5.28
+ (?*nla:...) Same, starting in 5.32; experimentally in 5.28
+ (?*negative_lookahead:...) Same, same versions as *nla
(?<=...) Zero-width positive lookbehind assertion
- (?*plb:...) Same; avail experimentally starting in 5.28
+ (?*plb:...) Same, starting in 5.32; experimentally in 5.28
+ (?*positive_lookbehind:...) Same, same versions as *plb
(?<!...) Zero-width negative lookbehind assertion
- (?*nlb:...) Same; avail experimentally starting in 5.28
+ (?*nlb:...) Same, starting in 5.32; experimentally in 5.28
+ (?*negative_lookbehind:...) Same, same versions as *plb
(?>...) Grab what we can, prohibit backtracking
- (?*atomic:...) Same; avail experimentally starting in 5.28
+ (?*atomic:...) Same, starting in 5.32; experimentally in 5.28
(?|...) Branch reset
(?<name>...) Named capture
(?'name'...) Named capture