<storage>
<record>
<values>
<points>99999999</points>
<points>Mr</points>
<points>Marvin</points>
<points>Homes</points>
<points>hardware</points>
<points>true</points>
<points>de</points>
<points>6</points>
<points>false</points>
</values>
</record>
</storage>
你好,
我试图改变一些xml值与python (xml.etree. elementtree)。这是xml数据的一小部分。
appelation=re.compile("Mr")
for fname in root.iter('points'):
if appelation.match(str(pTest)):
fname.text="New Mr/Mrs"
## here i am trying to edit the next iter (<points>Marvin</points>)
##fname.next().text="New name" -> doesnt work
有什么建议如何解决下一个问题吗?xml文件有许多名为<"points">和值总是不同的
我假设您正在使用xml.etree.ElementTree
,因为它是标准库的一部分。考虑下面的代码片段:
appelation = re.compile('Mr')
points = root.iter('points')
for node in points:
if appelation.match(node.text):
node.text = 'Monsieur'
node = next(points)
node.text = 'Francois'
break
ElementTree.dump(根)
在这段代码中,points
是一个可迭代对象,我们使用它来获取下一个点并进行搜索。一旦我们找到了我们正在寻找的节点(Mr),我们就可以对该节点和下一个节点做一些事情(通过在上述可迭代对象上调用next
)。
<storage>
<record>
<values>
<points>99999999</points>
<points>Monsieur</points>
<points>Francois</points>
<points>Homes</points>
<points>hardware</points>
<points>true</points>
<points>de</points>
<points>6</points>
<points>false</points>
</values>
</record>
</storage>
<标题> 更新如果要修改此节点、下一个节点和上一个节点;然后你需要跟踪前一个节点,因为迭代对象没有办法返回。最简单的方法是使用堆栈(list
或collections.deque
都可以):
appelation = re.compile('Mr')
points = root.iter('points')
nodes_stack = []
for node in points:
if appelation.match(node.text):
# Modify this node
node.text = 'Monsieur'
# Modify next node
next_node = next(points)
next_node.text = 'Francois'
# Modify previous node
previous_node = nodes_stack.pop()
previous_node.text = 'modified'
# Keep popping the stack the get to previous nodes
# in reversed order
ElementTree.dump(root)
break
else:
nodes_stack.append(node)
标题>