Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the sum of all nodes in the node set. Each node is first converted to a number value before summing.
numbersum(node-set)
Parameters
- node-set
A node-set.
Return Values
Returns the sum of all nodes in the node set. Each node is first converted to a number value before summing.
Remarks
Given the following XML document:
<root>
<a>1</a>
<a>3</a>
<a>2</a>
</root>
The following function call returns 6.
sum(//a)
Requirements
None.
See Also
Send Feedback on this topic to the authors