如何使用Python minidom替换xml中的属性值

时间:2013-12-08 21:32:54

标签: python xml replace minidom

我有以下xml:

<country name="Liechtenstein">
    <rank>1</rank>
    <year>2008</year>
    <gdppc>141100</gdppc>
    <neighbor direction="E" name="Austria"/>
    <neighbor direction="W" name="Switzerland"/>
</country>

我想将“Liechtenstein”替换为“德国”,因此结果应如下所示:

<country name="Germany">
    <rank>1</rank>
    <year>2008</year>
    <gdppc>141100</gdppc>
    <neighbor direction="E" name="Austria"/>
    <neighbor direction="W" name="Switzerland"/>
</country>

到目前为止,我已达到这一点:

from xml.dom import minidom
xmldoc = minidom.parse('C:/Users/Torah/Desktop/country.xml')
print xmldoc.toxml()
country = xmldoc.getElementsByTagName("country")
firstchild = country[0]
print firstchild.attributes["name"].value
#simple string mathod to replace
print firstchild.attributes["name"].value.replace("Liechtenstein", "Germany")
print xmldoc.toxml()

2 个答案:

答案 0 :(得分:3)

Simeon的路线确实有效。

或者,你可以这样做:

firstchild.setAttribute('name', 'Germany')

答案 1 :(得分:2)

以下行实际上并未更改XML:

print firstchild.attributes["name"].value.replace("Liechtenstein", "Germany")

它只获取值,用该字符串替换列支敦士登和德国并打印该字符串。它不会修改XML文档中的值。

您应该直接指定一个新值:

firstchild.attributes["name"].value = "Germany"