Merge pull request #2817 from Ovnuniarchos/DocRegex2

RegEx class documentation updated to reflect latest changes.
This commit is contained in:
Rémi Verschelde 2015-11-19 11:32:32 +01:00
commit 9fe85da881

View file

@ -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">