Subject: RE: dynamic string
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Tue, 18 Jan 2000 17:02:57 -0000
|
> i have the following problem: i have an XML file with some tags
> like (ignore errors, i did not put quotes...)
> <param name=foo>
> <param name=blah>
> <param name=www>
>
> after the XSL processor 'parses'(sorry, it is not the right term) the
file, the
> string at the end must be "fooblahwww"
>
<xsl:variable name="result">
<xsl:for-each select="param">
<xsl:value-of select="@name"/>
</xsl:for-each>
</xsl:variable>
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|