diff --git a/doc/history.qbk b/doc/history.qbk index c1381818..0d110a04 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -17,7 +17,8 @@ All issues including closed ones can be viewed [@https://github.com/boostorg/reg [h4 Boost.Regex-7.0.0 (Boost-1.78.0)] * [*Breaking Change:] Change \B to be the opposite of \b as per Perl behaviour. -* Change w32_regex_traits.hpp so that windows.h is no longer included. +* Change w32_regex_traits.hpp so that windows.h is no longer included. +* Fxed fuzzing related issues [@https://github.com/boostorg/regex/issues/156 #151], [@https://github.com/boostorg/regex/issues/156 #152], [@https://github.com/boostorg/regex/issues/156 #153], [@https://github.com/boostorg/regex/issues/156 #156]. [h4 Boost.Regex-6.0.0 (Boost-1.77.0)] diff --git a/doc/html/boost_regex/background/history.html b/doc/html/boost_regex/background/history.html index f329fd41..f5aff7c5 100644 --- a/doc/html/boost_regex/background/history.html +++ b/doc/html/boost_regex/background/history.html @@ -47,6 +47,12 @@
+ Note that a back reference can also be a forward-reference to a sub-expression
+ that has not yet been seen - this only really makes sense within a repeat,
+ so for example (\2two|(one))+
will match "oneonetwo".
+
Finally the \k escape can be used to refer to named subexpressions, for example
- \k<two>
will match whatever matched the subexpression
+ \k<two>
will whatever matched the subexpression
named "two".
Last revised: October 10, 2021 at 15:39:14 GMT |
+Last revised: November 05, 2021 at 17:17:10 GMT |