I've looked through several posts but I haven't quite found any answers that have solved my problem.
Sample XML =
<TextWithNodes>
<Node id="0"/>TEXT1<Node id="19"/>TEXT2 <Node id="20"/>TEXT3<Node id="212"/>
</TextWithNodes>
So I understand that usually if I had extracted TextWithNodes as a NodeList I would do something like
nodeList = TextWithNodes[0].getElementsByTagName('Node')
for a in nodeList:
node = a.nodeValue
print node
All I get is None. I've read that you must write a.childNodes.nodeValue but there isn't a child node to the node list since it looks like all the Node Ids are closing tags? If I use a.childNodes I get [].
When I get the node type for a it is type 1 and TEXT_NODE = 3. I'm not sure if that is helpful.
I would like to extract TEXT1, TEXT2, etc.
TEXT1,TEXT2etc. are not actually party of any element. Should your XML be<Node id="0">TEXT1</Node><Node id="19">TEXT2</Node><Node id="20">TEXT3</Node><Node id="212" />? Also, is there a closing<TextWithNodes>tag? – Chris Jun 20 '12 at 15:24xml.etree.ElemetTree(part of the standard library) for working with XML in Python. It is a far simpler and more pythonic interface. For example, inxml.domyou must useelement.childNodes.nodeValueto get the text associated withelement, in etree this is simplyelement.text. – Chris Jun 20 '12 at 15:27