summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2015-12-08 17:00:27 -0300
committerJuan Linietsky <reduzio@gmail.com>2015-12-08 17:00:27 -0300
commitafb895f197795857a68a40cc22e605bdd53bf254 (patch)
tree2914f848944ff5574ec300b318113c694ae6a1d1 /doc
parent1bcdea0804a2cf943eaa9f9bfd77e6a4ed68b471 (diff)
parentd957749179f7310995e994b45df72291a57bd0d7 (diff)
downloadredot-engine-afb895f197795857a68a40cc22e605bdd53bf254.tar.gz
Merge pull request #2993 from leezh/nrex-v0.1
updated the RegEx library nrex to v0.1
Diffstat (limited to 'doc')
-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 ab1320908e..15804b24cc 100644
--- a/doc/base/classes.xml
+++ b/doc/base/classes.xml
@@ -26960,7 +26960,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)
@@ -26972,9 +26972,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">