Browse Source

Merge pull request #2817 from Ovnuniarchos/DocRegex2

RegEx class documentation updated to reflect latest changes.
Rémi Verschelde 9 years ago
parent
commit
9fe85da881
1 changed files with 5 additions and 1 deletions
  1. 5 1
      doc/base/classes.xml

+ 5 - 1
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]
 		Lazy (non-greedy) quantifiers [code]*?[/code]
 		Begining [code]^[/code] and end [code]$[/code] anchors
 		Begining [code]^[/code] and end [code]$[/code] anchors
 		Alternation [code]|[/code]
 		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>
 	</description>
 	<methods>
 	<methods>
 		<method name="compile">
 		<method name="compile">