Read XSLT 2.0 and XPath 2.0 Programmer's Reference, 4th Edition Online
Authors: Michael Kay
e
.
Tokens
The definition of a token that I am using here is: a symbol that cannot contain separating whitespace. This means that my classification of which symbols are tokens is slightly different from the classification that appears in the W3C specification.
Simple tokens such as
+
and
and
are not included in this table; they simply appear anonymously in the syntax productions.
Symbol | Syntax | Page |
IntegerLiteral | Digit+ | page 530 |
DecimalLiteral | ( . Digit+ ) | ( Digit+ . Digit* ) | page 530 |
DoubleLiteral | (( . Digit+ ) | ( Digit+ ( . Digit* )?)) ( e | E ) ( + | - )? Digit+ | page 530 |