Friday 7 November 2014

XML : Multiple Character Escape sequences


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'.


Prevoius                                                 Next                                                 Home

No comments:

Post a Comment