xpath is nice for parsing xml files, but its not working for data inside the cdata tag:
<![CDATA[ Some Text <p>more text and tags</p>... ]]>
My solution: Get the content of the xml first and remove
"<![CDATA[" and "]]>".
After that I would run xpath "to reach everything" from the xml file. Is there a better solution? If not, how can I do it with a regular expression?