構造は次のとおりです。
<foo>
<bar>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>auto,full,incremental,</triggers>
</buildCommand>
</bar>
</foo>
これが私のロジックです。これは、削除するbuildCommand(2番目のもの)を識別し、それをリストに追加してから、削除を実行します。
import os;
import xml.etree.ElementTree as ET
document = ET.parse("foo");
root = document.getroot();
removeList = list()
for child in root.iter('buildCommand'):
if (child.tag == 'buildCommand'):
name = child.find('name').text
if (name == 'org.eclipse.ui.externaltools.ExternalToolBuilder'):
removeList.append(child)
for tag in removeList:
root.remove(tag)
document.write("newfoo")
Python 2.7.1にはremoveコマンドがありますが、removeでエラーが発生します。
ファイル"/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xml/etree/ElementTree.py"、行337、remove self._children.remove(element)ValueError:list.remove (x):xがリストにありません
アップデート:
* @martijn-pietersによって解決-2番目のforループの正しいロジックは
for tag in removeList:
parent = root.find('bar')
parent.remove(tag)