Below is the xml that has CDATA section
<?xml version="1.0" encoding="ISO-8859-1"?>
<character>
<name>
<role>Indiana Jones</role>
<actor>Harrison Ford</actor>
<part>protagonist</part>
<![CDATA[ <film>Indiana Jones and the Kingdom of the Crystal Skull</film>]]>
</name>
</character>
For above xml i need to rip off the CDATA and add new element under the existing element "film" , so the final output will be :
<?xml version="1.0" encoding="ISO-8859-1"?>
<character>
<name>
<role>Indiana Jones</role>
<actor>Harrison Ford</actor>
<part>protagonist</part>
<film>Indiana Jones and the Kingdom of the Crystal Skull</film>
<Language>English</Language>
</name>
</character>
Is this can be done using XSLT?