I'm trying to sum up a set of values in an XML using XSLT and XPath function fn:sum. This works fine as long as the values are non-null, however this is not the case. To illustrate my problem I've made an example:
<?xml version="1.0"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fn="http://www.w3.org/2005/xpath-functions">
<xsl:template match="/root">
<root>
<!-- Works fine for non-null values -->
<sum><xsl:value-of select="fn:sum(values/value)" /></sum>
</root>
</xsl:template>
</xsl:stylesheet>
and the XML:
<?xml version="1.0"?>
<root>
<values>
<value>1</value>
<value>2</value>
<value>3</value>
<value>4</value>
<!-- Nullvalue -->
<value />
</values>
</root>
The example works fine as long as there's no null-values. I've tried various variants of the select, such as <xsl:value-of select="fn:sum(values[value != '']/value)" />
(as you might notice, not much of an XSLT export ;) ) How can I filter out the null-values?