How to remove elements from xml using xslt with stylesheet and xsltproc? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T20:45:24Z http://stackoverflow.com/feeds/question/321860 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/321860/how-to-remove-elements-from-xml-using-xslt-with-stylesheet-and-xsltproc 4 How to remove elements from xml using xslt with stylesheet and xsltproc? Grundlefleck 2008-11-26T19:24:56Z 2008-11-27T10:17:48Z <p>I have a lot of XML files which have something of the form:</p> <pre> &lt Element fruit="apple" animal="cat" /&gt </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" &amp;&amp; animal=="cat"). In the same document there are many elements named "Element", I wish for these to remain. So</p> <pre> &lt Element fruit="orange" animal="dog" /&gt &lt Element fruit="apple" animal="cat" /&gt &lt Element fruit="pear" animal="wild three eyed mongoose of kentucky" /&gt </pre> <p>Would become:</p> <pre> &lt Element fruit="orange" animal="dog" /&gt &lt Element fruit="pear" animal="wild three eyed mongoose of kentucky" /&gt </pre> http://stackoverflow.com/questions/321860/how-to-remove-elements-from-xml-using-xslt-with-stylesheet-and-xsltproc/321993#321993 0 Answer by dfrey for How to remove elements from xml using xslt with stylesheet and xsltproc? dfrey 2008-11-26T20:16:05Z 2008-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#322079 9 Answer by Dimitre Novatchev for How to remove elements from xml using xslt with stylesheet and xsltproc? Dimitre Novatchev 2008-11-26T20:44:27Z 2008-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> &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> &lt;xsl:output omit-xml-declaration="yes"/> &lt;xsl:template match="node()|@*"> &lt;xsl:copy> &lt;xsl:apply-templates select="node()|@*"/> &lt;/xsl:copy> &lt;/xsl:template> &lt;xsl:template match="Element[@fruit='apple' and @animal='cat']"/> &lt;/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> &lt;doc>... &lt;Element name="same">foo&lt;/Element>... &lt;Element fruit="apple" animal="cat" /> &lt;Element fruit="pear" animal="cat" /> &lt;Element name="same">baz&lt;/Element>... &lt;Element name="same">foobar&lt;/Element>... &lt;/doc> </pre> <p>the wanted result is produced:</p> <pre> &lt;doc>... &lt;Element name="same">foo&lt;/Element>... &lt;Element fruit="pear" animal="cat"/> &lt;Element name="same">baz&lt;/Element>... &lt;Element name="same">foobar&lt;/Element>... &lt;/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>