RE: [xsl] XSLT Simple Transformation?

Subject: RE: [xsl] XSLT Simple Transformation?
From: "Lars Huttar" <lars_huttar@xxxxxxx>
Date: Tue, 28 Oct 2003 16:12:29 -0600
Without looking much at the rest of your XML or stylesheet,
I would change
         <xsl:variable name="temp" select="SETID"/>
         <SETID><xsl:value-of select="concat($temp,01)"/></SETID>
to
	    <SETID><xsl:value-of select="SETID" />01</SETID>

If you use concat(), you should put the 01 in quotes:
     select="concat($temp,'01')"

Lars



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


Current Thread