Name
number()
Converts its argument to a number.
Syntax
[1.0] numbernumber(object?)[2.0] xs:doublenumber()[2.0] xs:doublenumber(xs:anyAtomicType)
Inputs
[1.0] An object.
[2.0] An xs:anyAtomicType value.
Output
A number. If no argument is passed to the number function, the context item is
used. The specific rules for converting the argument to a number
are different for XSLT 1.0 and 2.0.
[1.0] Here are the rules for XSLT 1.0:
If the argument is a boolean value, the value
trueis converted to the number1; the valuefalseis converted to the number0.If the argument is a node-set, the node-set is converted to a string as if it were passed to the
string()function, and then that string is converted to a number like any other string. (Remember that thestring()function returns the string value of the first node in the node-set.)If the argument is a string, it is converted as follows:
If the string consists of optional whitespace, followed by an optional minus sign (
–), followed by a number, followed by whitespace, it is converted to the floating-point value nearest to the mathematical value represented by the string. (The IEEE 754 standard defines around-to-nearestrule; see the standard for more information.)Any other string is converted to the value
NaN(not a number).
XSLT 1.0 processors are allowed to support other datatypes. If the argument is any other type, it is converted to a number in a way that depends on that type. See the documentation for your XSLT processor to find out what ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access