उपरोक्त उत्तर सही है, अर्थात्:
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 )
Inkscape के साथ बनाई गई मेरी सरल SVG फ़ाइल के लिए इसे चलाने से मुझे यह मिला:
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 का उपयोग किया, इस पृष्ठ पर विभिन्न क्षेत्रों को समझाया गया है, मिनीडोम पायथन।