Subject: Re: format number
From: henry human <henry_human@xxxxxxxx>
Date: Mon, 19 Mar 2012 11:27:19 +0000 (GMT)
|
Hi Andrew
This is it! Thank you for the explanation too.
Henry
-----
Urspr|ngliche Message -----
Von: Andrew Welch <andrew.j.welch@xxxxxxxxx>
An:
xsl-list@xxxxxxxxxxxxxxxxxxxxxx
CC:
Gesendet: 11:45 Montag, 19.Mdrz 2012
Betreff: Re: format number
On 19 March 2012 10:36, henry human
<henry_human@xxxxxxxx> wrote:
> Hello
> I have filed1 = 100 or filed1 = 2000
or filed1 = 30000 ...(length < 8)
> I will format filed1 with zeros, so the
filed1 is ever 8 digits long:
> 100 => 10000000
> 2000 => 20000000
> 30000
=> 30000000
If you really want to change the number by padding zeros onto the
end,
then you can do:
concat($num, substring('00000000',
string-length(string($num))))"
If however you want to pad with leading zeros
(leaving the number
unchanged), then you can do:
format-number($num,
'00000000')
--
Andrew Welch
http://andrewjwelch.com
|