Re: [xsl] format-number round is not desired

Subject: Re: [xsl] format-number round is not desired
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 23 Apr 2012 10:33:25 +0100
On 23/04/2012 10:26, henry human wrote:
Hi guys
There is still a penalty, now If the number is negative the floor funciton rounds!
Sample:
$var = - 20624.50
output = -0000000020625
-------------------------------------

I can't rember if you are using xslt 1 or 2, in 1, perhaos teh easiest way would be


<xsl:choose>
<xsl:when test="$var &gt;= 0"><xsl:value-of  ....floor($var)
<xsl:otherwise>.................................ceil(....

or (as there may be edge cases with formatting negative numbers anyway perhaps


<xsl:choose> <xsl:when test="$var &gt;= 0"><xsl:value-of ....floor($var) <xsl:otherwise>-<xsl:value-of ....floor(-$var)

David

--
google plus: https:/profiles.google.com/d.p.carlisle

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________


Current Thread