How to remove elements from xml using xslt with stylesheet and xsltproc? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T20:45:24Zhttp://stackoverflow.com/feeds/question/321860http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/321860/how-to-remove-elements-from-xml-using-xslt-with-stylesheet-and-xsltproc4How to remove elements from xml using xslt with stylesheet and xsltproc?Grundlefleck2008-11-26T19:24:56Z2008-11-27T10:17:48Z
<p>I have a lot of XML files which have something of the form:</p>
<pre>
< Element
fruit="apple"
animal="cat"
/>
</pre>
<p>Which I want to be removed from the file.</p>
<p>Using an XSLT stylesheet and the Linux command-line utility xsltproc, how could I do this?</p>
<p>By this point in the script I already have the list of files containing the element I wish to remove, so the single file can be used as a parameter.</p>
<p><hr /></p>
<p><strong>EDIT:</strong> the question was originally lacking in intention.</p>
<p>What I am trying to achieve is to remove the entire element "Element" where (fruit=="apple" && animal=="cat"). In the same document there are many elements named "Element", I wish for these to remain. So</p>
<pre>
< Element
fruit="orange"
animal="dog"
/>
< Element
fruit="apple"
animal="cat"
/>
< Element
fruit="pear"
animal="wild three eyed mongoose of kentucky"
/>
</pre>
<p>Would become:</p>
<pre>
< Element
fruit="orange"
animal="dog"
/>
< Element
fruit="pear"
animal="wild three eyed mongoose of kentucky"
/>
</pre>
http://stackoverflow.com/questions/321860/how-to-remove-elements-from-xml-using-xslt-with-stylesheet-and-xsltproc/321993#3219930Answer by dfrey for How to remove elements from xml using xslt with stylesheet and xsltproc?dfrey2008-11-26T20:16:05Z2008-11-26T20:16:05Z<p>You need to provide more information.</p>
<p>Are you trying to remove any element named "Element"? Maybe you only want to remove the element named element if it has attributes "fruit" and "animal" with values "apple" and "cat" respectively.</p>
http://stackoverflow.com/questions/321860/how-to-remove-elements-from-xml-using-xslt-with-stylesheet-and-xsltproc/322079#3220799Answer by Dimitre Novatchev for How to remove elements from xml using xslt with stylesheet and xsltproc?Dimitre Novatchev2008-11-26T20:44:27Z2008-11-26T20:44:27Z<p>Using one of the most fundamental XSLT design patterns: "Overriding the <a href="http://www.w3.org/TR/xslt#copying" rel="nofollow"><strong>identity transformation</strong></a>" one will just write the following:</p>
<pre>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Element[@fruit='apple' and @animal='cat']"/>
</xsl:stylesheet>
</pre>
<p><strong>Do note</strong> how the second template overrides the identity (1st) template only for elements named "Element" that have an attribute "fruit" with value "apple" and attribute "animal" with value "cat". This template has empty body, which means that the matched element is simply ignored (nothing is produced when it is matched).</p>
<p>When this transformation is applied on the following source XML document:</p>
<pre>
<doc>...
<Element name="same">foo</Element>...
<Element fruit="apple" animal="cat" />
<Element fruit="pear" animal="cat" />
<Element name="same">baz</Element>...
<Element name="same">foobar</Element>...
</doc>
</pre>
<p>the wanted result is produced:</p>
<pre>
<doc>...
<Element name="same">foo</Element>...
<Element fruit="pear" animal="cat"/>
<Element name="same">baz</Element>...
<Element name="same">foobar</Element>...
</doc>
</pre>
<p>More code snippets of using and overriding the identity template can be found <strong><a href="http://www.dpawson.co.uk/xsl/sect2/identity.html" rel="nofollow">here</a></strong>.</p>