|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Searching in Sub-children from an Array
in xslt2 something like
<xsl:key name="ids" match="*" use="@ID"/>
<xsl:template match="Steps">
<xsl:variable name="ids" select="tokenize(.,',\s*')"/>
<xsl:apply-templates mode="step" select="key('ids',$ids[1])[1]">
<xsl:with-param name="ids" select="$ids[position()!=1]"/>
</xsl:apply-templates>
</xsl:template>
<xsl:template mode="step" match="*">
<xsl:param name="ids"/>
do something with this node then
<xsl:apply-templates mode="step" select="key('ids',$ids[1],.)[1]">
<xsl:with-param name="ids" select="$ids[position()!=1]"/>
</xsl:apply-templates>
</xsl:template>
David
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






