2

给定以下xml:

<!-- file.xml -->
<video>
    <original_spoken_locale>en-US</original_spoken_locale>
    <another_tag>somevalue</another_tag>
</video>

<original_spoken_locale>替换标签内的值的最佳方法是什么?如果我确实知道价值,我可以使用类似的东西:

with open('file.xml', 'r') as file:
    contents = file.read()
new_contents = contents.replace('en-US, 'new-value')
with open('file.xml', 'w') as file:
    file.write(new_contents)

但是,在这种情况下,我不知道值是多少。

4

1 回答 1

8

这对于 ElementTree 来说相当容易。只需替换text元素属性的值:

>>> from xml.etree.ElementTree import parse, tostring
>>> doc = parse('file.xml')
>>> elem = doc.findall('original_spoken_locale')[0]
>>> elem.text = 'new-value'
>>> print tostring(doc.getroot())
<video>
    <original_spoken_locale>new-value</original_spoken_locale>
    <another_tag>somevalue</another_tag>
</video>

这也更安全,因为您可以en-US在文档的其他位置拥有。

于 2012-06-22T19:57:40.353 回答