Câu trả lời trên là đúng, cụ thể là:
name[0].firstChild.nodeValue
Tuy nhiên đối với tôi, cũng như những người khác, giá trị của tôi còn thấp hơn nhiều:
name[0].firstChild.firstChild.nodeValue
Để tìm cái này, tôi đã sử dụng như sau:
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 )
Chạy tệp này cho tệp SVG đơn giản của tôi được tạo bằng Inkscape, điều này đã cho tôi:
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: ()
Tôi đã sử dụng xml.dom.minidom, các trường khác nhau được giải thích trên trang này, MiniDom Python.