Re: [xsl] Using format-number() to display French currency

Subject: Re: [xsl] Using format-number() to display French currency
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 4 Jul 2005 16:57:36 +0100
if format-number doesn't do what you want, then it's sometimes easier to
just use the standard format and change things using translate.
In this case if you format it using the default , separator and . for
decimal point you want to change , to #160 and . to , so
translate(format-number(. . . ),',.','&#160;,')

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread