[Home] [By Thread] [By Date] [Recent Entries]
Hi Florian:
Brute force method: <xsl:template match="order/column"> <xsl:apply-templates select="/root/group/*[local-name()=current()/@name"/> </xsl:template> Quicker and easier method: <xsl:key name="fruits" match="group/*" use="local-name()"/> <xsl:template match="order/column">
<xsl:apply-templates select="key('fruits',@name)"/>
</xsl:template>Not so hard.... Cheers, Wendell At 12:07 PM 3/27/2003, you wrote: i have a document xml doc like this: ====================================================================== Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx Mulberry Technologies, Inc. http://www.mulberrytech.com 17 West Jefferson Street Direct Phone: 301/315-9635 Suite 207 Phone: 301/315-9631 Rockville, MD 20850 Fax: 301/315-8285 ---------------------------------------------------------------------- Mulberry Technologies: A Consultancy Specializing in SGML and XML ====================================================================== XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



