xsl-list
[Top] [All Lists]

RE: [xsl] Fw: problem with sum() function

2006-06-26 09:33:25
Hi All
         I am using sum() function with nodelist. Now my 
problem is that
when a source elemnt contains leading + sign then sum 
returns NAN. Is
there
a way to remove this + sign and then calculate the sum. 

Google for "XSLT 1.0 sum of computed value".

XSLT 2.0 allows the leading plus sign; and if it didn't, you could do it
with

sum(for $x in $nodeset return number(translate($x, '+', ''))

Michael Kay
http://www.saxonica.com/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>