In the XML example below, how can I can get the value of the <data> element? In this case, I would like XML parser to return the value of node as a string which should return
This is my first web page<br/><p>test123</p><p>How exciting</p>
(i.e. an XML fragment).
I have been trying to use Perl (XML::SimpleObject) or Python (miniDOM). Both of them can only return the text value of the <data> element which is "This is my first web page"
<dataset>
<data>
This is my first web page<br/>
<p>test123</p>
<p>How exciting</p>
</data>
</dataset>
