[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: removing comma from within sum command

Subject: Re: removing comma from within sum command
From: JBryant@xxxxxxxxx
Date: Wed, 1 Dec 2004 10:17:37 -0600
xslt sum comma
That depends on the processor. Which one are you using?

Jay Bryant
Bryant Communication Services




dmitrik@xxxxxxxxxxxxxx 
12/01/2004 10:09 AM
Please respond to
xsl-list@xxxxxxxxxxxxxxxxxxxxxx


To
xsl-list@xxxxxxxxxxxxxxxxxxxxxx
cc

Subject
Re:  removing comma from within sum command






"if your processor has a node-set extension" 

how can this be added?

Thanks,
Dmitri

-----Original Message-----
From: David Carlisle <davidc@xxxxxxxxx>
Sent: Dec 1, 2004 10:14 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  removing comma from within sum command

I
> s there a way to remove commas from the Charge node in this select?

Not in pure XSLT 1, no.

in XSLT 1 sum() can only be applied to text that directly occurs in the
source, if you need to do any transformation before summing you have to
go back to your original plan of using a recursive template.

Or simpler (but probably a bit less efficient) if your processor has a
node-set extension first transform the source into a variable removing
commas but not doing a sum, then sum this new node set.

<xsl:variable name="x">
<xsl:for-each select="Trade/Step
 
[concat(substring(MinFlowDate,7),substring(MinFlowDate,1,2),substring(MinFlowDate,4,2))>=
concat(substring($global,7)+3,substring($global,1,2),substring($global,4,2))]

 
[concat(substring(MinFlowDate,7),substring(MinFlowDate,1,2),substring(MinFlowDate,4,2))<
concat(substring($global,7)+6,substring($global,1,2),substring($global,4,2))]
   /Charge">
<charge><xsl:value-of select="translate(.,',','.')"/></charge>
</xsl:for-each>
</xsl:variable>

</xsl:variable>

<xsl:value-of select="format-number(sum(xx:node-set($x/charge),
'###,###,##0')"/>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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
________________________________________________________________________

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.