Multiple Character
Escape sequence
|
Description
|
.
|
Matches
any character
|
\s
|
Matches white spaces
like \t, \n, \r
|
\S
|
Matches any
character except those matched by \s
|
\i
|
Matches first
character in an XML identifier. Specifically, any letter, the
character '_', or the character ':'
|
\I
|
Matches any
character except those matched by '\i'.
|
\c
|
Matches any
character that might appear in the built-in NMTOKEN datatype.
|
\C
|
Matches any
character except those matched by '\c'.
|
\d
|
Matches any Decimal
digit.
|
\D
|
Matches any
character except those matched by '\d'.
|
\w
|
Matches any
character that might appear in a word.
|
\W
|
Matches any
character except those matched by '\w'.
|
This blog is primarily focus on Java fundamentals and the libraries built on top of Java programming language. Most of the post are example oriented, hope you have fun in reading my blog....:)
Friday 7 November 2014
XML : Multiple Character Escape sequences
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment