Update history and regenerate docs.

This commit is contained in:
jzmaddock
2021-11-05 17:18:10 +00:00
parent 09d0e434dd
commit a9f18c2c03
5 changed files with 17 additions and 4 deletions

View File

@ -364,9 +364,14 @@
</tr>
</tbody>
</table></div>
<p>
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 <code class="computeroutput"><span class="special">(\</span><span class="number">2</span><span class="identifier">two</span><span class="special">|(</span><span class="identifier">one</span><span class="special">))+</span></code> will match "oneonetwo".
</p>
<p>
Finally the \k escape can be used to refer to named subexpressions, for example
<code class="literal">\k&lt;two&gt;</code> will match whatever matched the subexpression
<code class="literal">\k&lt;two&gt;</code> will whatever matched the subexpression
named "two".
</p>
<h5>