ฉันต้องการลบองค์ประกอบทั้งหมดตามเนื้อหาของแอตทริบิวต์โดยใช้ lxml ของ python ตัวอย่าง:
import lxml.etree as et
xml="""
<groceries>
<fruit state="rotten">apple</fruit>
<fruit state="fresh">pear</fruit>
<fruit state="fresh">starfruit</fruit>
<fruit state="rotten">mango</fruit>
<fruit state="fresh">peach</fruit>
</groceries>
"""
tree=et.fromstring(xml)
for bad in tree.xpath("//fruit[@state=\'rotten\']"):
#remove this element from the tree
print et.tostring(tree, pretty_print=True)
ฉันต้องการพิมพ์:
<groceries>
<fruit state="fresh">pear</fruit>
<fruit state="fresh">starfruit</fruit>
<fruit state="fresh">peach</fruit>
</groceries>
มีวิธีดำเนินการโดยไม่เก็บตัวแปรชั่วคราวและพิมพ์ด้วยตนเองหรือไม่ดัง:
newxml="<groceries>\n"
for elt in tree.xpath('//fruit[@state=\'fresh\']'):
newxml+=et.tostring(elt)
newxml+="</groceries>"