-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 6-pool
-
Component/s: docs
-
b08
-
generic
-
generic
-
Not verified
Error on tutorial page http://download.oracle.com/javase/tutorial/essential/regex/literals.html
quote: The metacharacters supported by this API are: ([{\^-$|]})?*+.
The characters <, !, and = are ommitted in this list. Java regex, for all practical matters being perl 5 regex, support positive and negative lookahead and lookbehind:
foo(?=bar)
foo(?!bar)
(?<=foo)bar
(?<!foo)bar
quote: The metacharacters supported by this API are: ([{\^-$|]})?*+.
The characters <, !, and = are ommitted in this list. Java regex, for all practical matters being perl 5 regex, support positive and negative lookahead and lookbehind:
foo(?=bar)
foo(?!bar)
(?<=foo)bar
(?<!foo)bar