diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2015-11-19 11:32:32 +0100 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2015-11-19 11:32:32 +0100 |
commit | 9fe85da881205f68ed949a1370ddd162ec331dc7 (patch) | |
tree | b983f39800d49e8cf76e3c708019ebb45d29891b | |
parent | 91687f63b6bf28d7096ff614344537c902a0a1db (diff) | |
parent | 07110c3a14426f6981ae8b6c9ea036e47f5a1cc0 (diff) |
Merge pull request #2817 from Ovnuniarchos/DocRegex2
RegEx class documentation updated to reflect latest changes.
-rw-r--r-- | doc/base/classes.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 24c5799350..de22629784 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -26819,7 +26819,11 @@ 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]\99[/code] + Backreferences [code]\1[/code] to [code]\9[/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) + Word boundaries [code]\b[/code], [code]\B[/code] </description> <methods> <method name="compile"> |