RE: [xsl] Associative Arrays and XSLT ?

Subject: RE: [xsl] Associative Arrays and XSLT ?
From: "Kirkham, Pete (UK)" <pete.kirkham@xxxxxxxxxxxxxx>
Date: Thu, 17 Mar 2005 16:27:27 +0000
in XSLT 1 or 2?

<xsl:stylesheet
  version="2.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  <xsl:output method="text"/>

  <xsl:template match="/">
    <xsl:value-of select="$h/*[@name='int 4']"/>
  </xsl:template>

  <xsl:variable name="h">
    <e name="name">MyName</e>
    <e name="int 4">finalInteger</e>
  </xsl:variable>
</xsl:stylesheet>

********************************************************************
This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender.
You should not copy it or use it for any purpose nor disclose or
distribute its contents to any other person.
********************************************************************

Current Thread