F
Francesco Moi
Hi.
I must parse this XML document:
--------------
<doc>
<item>
<name>Jerry</name>
<message>Hi<br>My name is Jerry</message>
</item>
</doc>
--------
When I try to get the 'message' value by using:
getElementsByTagName('message')->item(0)->getFirstChild->getNodeValue;
I get only:
Hi
Any suggestion to get the whole text? I'm using Xerces+Perl.
Thank you very much.
I must parse this XML document:
--------------
<doc>
<item>
<name>Jerry</name>
<message>Hi<br>My name is Jerry</message>
</item>
</doc>
--------
When I try to get the 'message' value by using:
getElementsByTagName('message')->item(0)->getFirstChild->getNodeValue;
I get only:
Hi
Any suggestion to get the whole text? I'm using Xerces+Perl.
Thank you very much.