Say that I have the following XML and that I am using Python. I am using xml.etree.ElementTree.
JavaScript
x
18
18
1
<?xml version='1.0' encoding='UTF-8'?>
2
<results preview='0'>
3
<meta>
4
<fieldOrder>
5
<field>count</field>
6
</fieldOrder>
7
</meta>
8
<result offset='0'>
9
<field k='count'>
10
<value>
11
<text1>6</text>
12
<text2>7</text>
13
<text3>8</text>
14
</value>
15
</field>
16
</result>
17
</results>
18
Is there an easy way for me to go down into the XML and also delete any text2 elements?
Desired result:
JavaScript
1
17
17
1
<Data?xml version='1.0' encoding='UTF-8'?>
2
<results preview='0'>
3
<meta>
4
<fieldOrder>
5
<field>count</field>
6
</fieldOrder>
7
</meta>
8
<result offset='0'>
9
<field k='count'>
10
<value>
11
<text1>6</text>
12
<text3>8</text>
13
</value>
14
</field>
15
</result>
16
</results>
17
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
1
5
1
parent = root.find('.//value[text2]')
2
target = parent.find('./text2')
3
parent.remove(target)
4
print(ET.tostring(doc, xml_declaration = True).decode())
5
The output should be your (fixed) expected output.