xsl-list
[Top] [All Lists]

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

2012-04-23 04:33:40
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. ________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--