คำตอบข้างต้นถูกต้องกล่าวคือ:
name[0].firstChild.nodeValue
อย่างไรก็ตามสำหรับฉันเช่นเดียวกับคนอื่น ๆ คุณค่าของฉันอยู่ที่ต้นไม้:
name[0].firstChild.firstChild.nodeValue
ในการค้นหาสิ่งนี้ฉันใช้สิ่งต่อไปนี้:
def scandown( elements, indent ):
for el in elements:
print(" " * indent + "nodeName: " + str(el.nodeName) )
print(" " * indent + "nodeValue: " + str(el.nodeValue) )
print(" " * indent + "childNodes: " + str(el.childNodes) )
scandown(el.childNodes, indent + 1)
scandown( doc.getElementsByTagName('text'), 0 )
การเรียกใช้สิ่งนี้สำหรับไฟล์ SVG แบบง่ายของฉันที่สร้างด้วย Inkscape ทำให้ฉัน:
nodeName: text
nodeValue: None
childNodes: [<DOM Element: tspan at 0x10392c6d0>]
nodeName: tspan
nodeValue: None
childNodes: [<DOM Text node "'MY STRING'">]
nodeName: #text
nodeValue: MY STRING
childNodes: ()
nodeName: text
nodeValue: None
childNodes: [<DOM Element: tspan at 0x10392c800>]
nodeName: tspan
nodeValue: None
childNodes: [<DOM Text node "'MY WORDS'">]
nodeName: #text
nodeValue: MY WORDS
childNodes: ()
ฉันใช้ xml.dom.minidom ฟิลด์ต่างๆจะอธิบายไว้ในหน้านี้ MiniDom Python