以下是示例xml文件。
<?xml version='1.0' encoding='UTF-8'?>
<a>
<b>
<c>
<d>TEXT</d>
</c>
</b>
</a>
我需要替换&#34; TEXT&#34;使用字符串列表,以便我的xml如下所示。
<?xml version='1.0' encoding='UTF-8'?>
<a>
<b>
<c>
<d>TEXT1,TEXT2,TEXT3</d>
</c>
</b>
</a>
请告诉我如何使用python实现这一目标。
答案 0 :(得分:0)
试试这个:
a = a.replace(<old string>, <new string>)
读取文件并执行此操作。
答案 1 :(得分:0)
这应该有用,
from xml.dom import minidom
doc = minidom.parse('my_xml.xml')
item = doc.getElementsByTagName('d')
print item[0].firstChild.nodeValue
item[0].firstChild.replaceWholeText('TEXT, TEXT1 , etc...')
for s in item: #if you want to loop try this
s.firstChild.replaceWholeText('TEXT, TEXT1 , etc...')
答案 2 :(得分:0)
您可以使用lxml
,但这取决于您的实际使用目的,以下是一个示例:
from lxml import etree
a = '''<?xml version='1.0' encoding='UTF-8'?>
<a>
<b>
<c>
<d>TEXT</d>
</c>
</b>
</a>'''
tree = etree.fromstring(a)
#for file you need to use tree = etree.parse(filename)
for item in tree:
for data in item:
for point in data:
if point.tag == 'd':
if point.text == 'TEXT':
point.text = 'TEXT,TEXT,TEXT'
print(etree.tostring(tree))
#<a>
# <b>
# <c>
# <d>TEXT,TEXT,TEXT</d>
# </c>
# </b>
#</a>
答案 3 :(得分:0)
您可以将xml文件视为文本文件,并使用您用来操作字符串的函数。例如:
with open('testxml.xml','r') as f:
contents=f.read() #open xml file
stringlist=['Text1','Text2','Text3'] #list of strings you want to replace with
opentag='<d>' #tag in which you want to replace text
closetag='</d>'
oldtext=contents[contents.find(opentag)+3:contents.find(closetag)]
newtext=''.join(str_+',' for str_ in stringlist)[:-1] #ignore last comma
contents=contents.replace(oldtext,newtext) #replace old text with new
with open('testxml.xml','w') as f:
f.write(contents) #write contents to file
可能有很多实例,你有很多嵌套标签,这个简单的脚本不起作用。如果您想要执行更高级的任务,可以使用Python内置的XML编辑包ElementTree。