This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Removing nodes that have duplicate names


<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:template match='/'>
<xsl:apply-templates/>
</xsl:template>

<!--=== Make a slight change to this line ===-->
<xsl:template match='/root/dupnode'/>

<xsl:template match='@* | node()'>
<xsl:copy>
<xsl:apply-templates select='@* | node()'/>
</xsl:copy>
</xsl:template>

</xsl:stylesheet>


Cheers,

Tom P

[Phil Servedio]

> I have an xml tree which looks like the following. I want
> to copy the source tree to a result tree minus certain
> nodes. However some node names are duplicated:
>
> ...
> This xsl removes all <dupnode>s. How do I remove
> only the <dupnode> at the root?
>
> Can a template directive say 'match <this> andparent node = root'?
>



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]