S
Scott F
Hi all,
Today's embarassingly simple question goes like this.
I have a file, testdoc.xml, to parse.
Inside the file is an element
<refrain>Yo, Ho, Ho</refrain>
So, starting with
therefrain = getTagsByName('refrain')
print therefrain.toxml()
does print the whole Element
What code do I need to merely print the *value* of the element, i.e.,
I would like to see
Yo, Ho, Ho
printed out.
I can get Attribute values, the whole Element with tags, etc., and
could do a substring search on the Element, but surely something
exists within minidom to do this.
Thanks.
Scott
Today's embarassingly simple question goes like this.
I have a file, testdoc.xml, to parse.
Inside the file is an element
<refrain>Yo, Ho, Ho</refrain>
So, starting with
Code:
from xml.dom import minidom
xmldoc = minidom.parse('home\me\testdoc.xml')
therefrain = getTagsByName('refrain')
print therefrain.toxml()
does print the whole Element
What code do I need to merely print the *value* of the element, i.e.,
I would like to see
Yo, Ho, Ho
printed out.
I can get Attribute values, the whole Element with tags, etc., and
could do a substring search on the Element, but surely something
exists within minidom to do this.
Thanks.
Scott