xsl-list
[Top] [All Lists]

Re: Retriving attribute value using variable.

2005-08-21 22:47:57
"Arul" == Arulraj  <p_arulraj(_at_)yahoo(_dot_)com> writes:

    Arul> Hi, Is it possible to use xsl variable in the <xsl:value-of
    Arul> select=""/>

    Arul> I am having the following XML.

    Arul> XML: <?xml version="1.0" encoding="ISO-8859-1"?>
    Arul> <landcodecombo> <values attribute1="IN"
    Arul> attribute2="INDIEN"/> </landcodecombo>

    Arul> XSL: <xsl:for-each select="landcodecombo"> <xsl:variable
    Arul> name="searchAttribute">attribute1</xsl:variable>
    Arul> <xsl:for-each select="values"> <xsl:value-of
    Arul> select="concat('@',$searchAttribute)"/> </xsl:for-each>
    Arul> </xsl:for-each>

    Arul> I need the output like.  IN

    Arul> But i am getting the output @attribute1

    Arul> Is it possible to get the value of "attribute1" using
    Arul> variable.

Yes.

<xsl:variable name="searchAttribute" 
select="/landcodecombo/values/@attribute1"/>
-- 
Colin Adams
Preston Lancashire

--~------------------------------------------------------------------
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>
--~--