mirror of
https://github.com/boostorg/regex.git
synced 2025-07-29 12:07:28 +02:00
Add missing docs for (?&NAME) Perlre construct.
regenerate docs. [SVN r71986]
This commit is contained in:
@ -514,7 +514,7 @@ whole to match then no match is found at all.
|
||||
|
||||
[h5 Recursive Expressions]
|
||||
|
||||
[^(?['N]) (?-['N]) (?+['N]) (?R) (?0)]
|
||||
[^(?['N]) (?-['N]) (?+['N]) (?R) (?0) (?&NAME)]
|
||||
|
||||
=(?R)= and =(?0)= recurse to the start of the entire pattern.
|
||||
|
||||
@ -523,6 +523,8 @@ whole to match then no match is found at all.
|
||||
[^(?-['N])] and [^(?+['N])] are relative recursions, so for example =(?-1)= recurses to the last sub-expression to be declared,
|
||||
and =(?+1)= recurses to the next sub-expression to be declared.
|
||||
|
||||
[^(?&NAME)] recurses to named sub-expression ['NAME].
|
||||
|
||||
[h5 Conditional Expressions]
|
||||
|
||||
=(?(condition)yes-pattern|no-pattern)= attempts to match /yes-pattern/ if
|
||||
|
Reference in New Issue
Block a user