xsl-list
[Top] [All Lists]

Re: [xsl] Concatenating multiple variables in a XPath statement

2006-06-24 01:06:36
I could finally do that this way:

<xsl:variable name="elem" select="/form/body/rows/row[$i]/*" />
...
<xsl:for-each select="/form/head/row/*">
 <xsl:value-of select="$elem[name()=$var2]" />
</xsl:for-each>

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--