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.
A version of this page is also available for
4/8/2010
Returns the sum of all nodes in the node set. Each node is first converted to a number value before summing.
Syntax
number sum(node-set)
Parameters
- node-set
A node-set.
Return Value
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)