[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: how to append a "," to the end of number

Subject: RE: how to append a "," to the end of number
From: "Macaulay,Malcolm (US)" <Malcolm.Macaulay2@xxxxxxxxx>
Date: Mon, 26 Aug 2002 17:27:02 -0500
xslt append
Hi Mac,

If I understand you correctly, you want something like this:

XML

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="comma separated.xslt"?>
<Rates>
	<NightlyRate>100</NightlyRate>
	<NightlyRate>200</NightlyRate>
	<NightlyRate>300</NightlyRate>
</Rates>

XSLT

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
	<xsl:template match="/">
		<input type="hidden" name="NightlyRates">
			<xsl:attribute name="value">
				<xsl:for-each select="/Rates/NightlyRate">
					<xsl:value-of select="."/><xsl:if test="position() != last()">, </xsl:if>
				</xsl:for-each>
			</xsl:attribute>
		</input>
	</xsl:template>
</xsl:stylesheet>

Output

<input type="hidden" name="NightlyRates" value="100, 200, 300">

Hope that helps,

cheers

Malcolm


-----Original Message-----
From: Mac Rost [mailto:mrost@xxxxxxxxxxxxx]
Sent: Monday, August 26, 2002 5:03 PM
To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
Subject:  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

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.