Skip to content
Advertisement

How to find an XML tag buried fairly deep, delete the tag if it is a match and save the XML as a string?

Say that I have the following XML and that I am using Python. I am using xml.etree.ElementTree.

JavaScript

Is there an easy way for me to go down into the XML and also delete any text2 elements?

Desired result:

JavaScript

Advertisement

Answer

Your sample xml is still not well formed (the opening and closing tags of the “text” children of <value> don’t match.

Assuming that’s fixed (that is, each closing tag matches the opening tag) the following should work:

JavaScript

The output should be your (fixed) expected output.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement