Subject: Re: format-number round is not desired
From: henry human <henry_human@xxxxxxxx>
Date: Mon, 23 Apr 2012 15:02:57 +0100 (BST)
|
Thanks all!
All solutions are helpful..I used the ceiling function which
pretty does what I want.
BR,
hny
----- Urspr|ngliche Message -----
Von:
David Carlisle <davidc@xxxxxxxxx>
An: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
CC:
henry human <henry_human@xxxxxxxx>
Gesendet: 11:33 Montag, 23.April 2012
Betreff: Re: format-number round is not desired
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 >= 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 >= 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.
________________________________________________________________________
|