Re: [xsl] how to append a "," to the end of number

Subject: Re: [xsl] how to append a "," to the end of number
From: "Noel Golding" <noel@xxxxxxxxxxxxxxx>
Date: Tue, 27 Aug 2002 08:21:30 -0400
<xsl:for-each select="NightlyRates">
    <xsl:if test="position() &gt; 1">
        <xsl:text>,</xsl:text>
    <xsl:if>
    <xsl:value-of select="text()"/>
</xsl:for-each>


----- Original Message ----- 
From: "Mac Rost" <mrost@xxxxxxxxxxxxx>
To: <XSL-List@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Monday, August 26, 2002 6:02 PM
Subject: [xsl] how to append a "," to the end of number


> I have this problem, I have an unknown number of prices that will be
> separated with a comma. I need to know if it is possible to do this in
> my xsl.
> 
> 
> <input type="hidden" name="NightlyRates">
> <xsl:attribute name="value"><xsl:value-of
> select="NightlyRates"/></xsl:attribute>
> </input>
> 
> This is my problem here. NightlyRates will have 1-M occurrences and it
> needs to be formatted like this. 54.95, 65.95 and so on.
> Thank you for all your help!
> 
> Mac Rost
> Affiliate Relations/XML Developer
> TravelNow.com a wholly owned subsidiary of 
> Hotel Reservations Network 
> mailto:xml@xxxxxxxxxxxxx
> 
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread