Good Morning,
I have a problem with a XML that contents CDATA code. If we have this XML:
<?xml version="1.0" encoding="ISO-8859-1"?>
<character>
<Body>
<methodResult>
<nodeOut>
<![CDATA[ <film>Indiana Jones and the Kingdom of the Crystal Skull</film>]]>
</nodeOut>
</methodResult>
</Body>
</character>
We need to have this:
<film>Indiana Jones and the Kingdom of the Crystal Skull</film>
Where is the XSLT? I want extract only the CDATA content in a XML file and delete the rest. I use XSLT 1.0.
Thank you!