Subject: Re: variable in xpath?
From: Oleg Tkachenko <olegt@xxxxxxxxxxxxx>
Date: Thu, 11 Apr 2002 21:02:21 +0200
|
<xsl:value-of select="*[name() = $child]"/> or
<xsl:value-of select="*[local-name() = $child]"/>
Steve Renshaw wrote:
I have a variable $child that holds element name as if it was
assinged by one the following:
<xsl:variable name="child" select="'a'"/>
<xsl:variable name="child" select="'b'"/>
with <element> as the context node, how do i select the contents of
either <a> or <b> using $child from the following fragment?
<element><a>1</a><b>2</b></element>
<xsl:template match="element">
<xsl:value-of select="... $child ..."/>
</xsl:element>
Thx
_________________________________________________________________
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
--
Oleg Tkachenko
Multiconn International, Israel
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|