summaryrefslogtreecommitdiff
path: root/doc/base
diff options
context:
space:
mode:
authorZher Huei Lee <lee.zh.92@gmail.com>2015-12-04 22:19:53 +0000
committerZher Huei Lee <lee.zh.92@gmail.com>2015-12-04 22:19:53 +0000
commitd957749179f7310995e994b45df72291a57bd0d7 (patch)
tree30c247b664d9a95506cf94695f110aa6302782d9 /doc/base
parentd0ddf150d9c7207f87409b5899297dae0fc0b708 (diff)
updated nrex documentation
Diffstat (limited to 'doc/base')
-rw-r--r--doc/base/classes.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml
index fd5df945ba..1b1f1d9f3f 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](?&lt;=)[/code], [code](?&lt;!)[/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
</return>
<argument index="0" name="pattern" type="String">
</argument>
- <argument index="1" name="expanded" type="bool" default="true">
+ <argument index="1" name="capture" type="int" default="9">
</argument>
<description>
+ 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.
</description>
</method>
<method name="find" qualifiers="const">