From d957749179f7310995e994b45df72291a57bd0d7 Mon Sep 17 00:00:00 2001 From: Zher Huei Lee Date: Fri, 4 Dec 2015 22:19:53 +0000 Subject: [PATCH] updated nrex documentation --- doc/base/classes.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/base/classes.xml b/doc/base/classes.xml index fd5df945bab..1b1f1d9f3f8 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -26945,7 +26945,7 @@ This method controls whether the position between two cached points is interpola Lazy (non-greedy) quantifiers [code]*?[/code] Begining [code]^[/code] and end [code]$[/code] anchors Alternation [code]|[/code] - Backreferences [code]\1[/code] to [code]\9[/code] + Backreferences [code]\1[/code] and [code]\g{1}[/code] POSIX character classes [code][[:alnum:]][/code] Lookahead [code](?=)[/code], [code](?!)[/code] and lookbehind [code](?<=)[/code], [code](?<!)[/code] ASCII [code]\xFF[/code] and Unicode [code]\uFFFF[/code] code points (in a style similar to Python) @@ -26957,9 +26957,10 @@ This method controls whether the position between two cached points is interpola - + + Compiles and assign the regular expression pattern to use. The limit on the number of capturing groups can be specified or made unlimited if negative.