[Home] [By Thread] [By Date] [Recent Entries]
This is a very simple modified identity transform:
<!-- Copy everything unchanged... --> <xsl:template match="@* | node()"> <xsl:apply-templates select="@* | node()"/> </xsl:template> <!-- ...except for these elements --> <xsl:template match="Dontwant1 | dontwant2"> <xsl:apply-templates/> <!-- Just process their contents --> </xsl:template> Evan Tim wrote: Hi, I'd like to remove some elements from an xml hierachy using xslt:
|

Cart



