[Home] [By Thread] [By Date] [Recent Entries]
It's a simple grouping problem.
<!-- group <Parameter/>s by <Name/> --> <xsl:key name="params" match="Parameter" use="Name"/> <xsl:template match="Parent"> <xsl:apply-templates select="Class/Parameter[generate-id() = generate-id(key('params', Name))]"/> </xsl:template> <xsl:template match="Parameter"> <xsl:value-of select=Name"/> </xsl:template> More information at http://www.jenitennison.com/xslt/grouping/muenchian.xml. Regards, Joerg Raghava Rao wrote: How can repitition be avoided with xsl for the example input xml and output html file given below: XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



