I am trying to extract the text value between two tags of an XML document with xml.etree.ElementTree
. In the following example, that would be the values text two
and text three
. I can extract only text one
.
How would I find the other texts from the <c>
tag?
import xml.etree.ElementTree as ET
root = ET.fromstring(
"<foo><c>text one<sub>ttt</sub>text two<sub>uuu</sub>text three</c></foo>")
print root[0].text # text one
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…