[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] Addition/Subtraction of numbers.


Subject: RE: [xsl] Addition/Subtraction of numbers.
From: Joshua.Kuswadi@xxxxxxxxxxxxxxxxxxxx
Date: Thu, 24 Jan 2002 10:24:20 +1100

Hi Jeni,

I'm curious about your solution:
> In XSLT 1.0 you need something like:
> 
>   <xsl:variable name="n1">
>     <xsl:choose>
>       <xsl:when test="number($t1) = number($t1)">
>         <xsl:value-of select="$t1" />
>       </xsl:when>
>       <xsl:otherwise>0</xsl:otherwise>
>     </xsl:choose>
>   </xsl:variable>
>   <xsl:variable name="n2">
>     <xsl:choose>
>       <xsl:when test="number($t2) = number($t2)">
>         <xsl:value-of select="$t2" />
>       </xsl:when>
>       <xsl:otherwise>0</xsl:otherwise>
>     </xsl:choose>
>   </xsl:variable>
>   <xsl:variable name="temp1" select="$n1 + $n2" />

I have the understanding that the XPath number() function will return the string 'NaN' if the parameter passed in is not a number. Though, at a lower level, won't the same function called twice with identical parameter(s) return the same thing? So, when would your test of "number($t1) = number($t1)" fail?

Confusedly,
Joshua

------------------------------------------------------------------------------
This message and any attachment is confidential and may be privileged or otherwise protected from disclosure.  If you have received it by mistake please let us know by reply and then delete it from your system; you should not copy the message or disclose its contents to anyone.





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



Current Thread
Keywords