Re: [xsl] sum() with decimal-separator ","

Subject: Re: [xsl] sum() with decimal-separator ","
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 9 Sep 2003 10:03:08 +0100
> How can I use the function sum() with an
> decimal-separator like "," ?

The easiest way is to convert to . first, so

<xsl:variable name="x">
 <xsl:for-each select="row/BUCHWERTBW"
  <BUCHWERTBW><xsl:value-of select="translate(.,',','.')"/></BUCHWERTBW>
</xsl:for-each>
</xsl:variable>

then use your processors node set extension to apply sim to that

<xsl:value-of select="sum(xx:node-set($x)/BUCHWERTBW)"/>

If you your processor is one of teh few without a node-set extension
then ask again and someone will process a recursive loop to do the same
thing.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread