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

Subject: Re: [xsl] Concatenating multiple variables in a XPath statement
From: "Mohsen Saboorian" <mohsens@xxxxxxxxx>
Date: Sat, 24 Jun 2006 11:36:21 +0330
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>

Current Thread