I am reading an XML file with XML::Simple ( XMLin), doing some substitute operations in some of it's attributes and then XMLOut it in another file. What I noticed is that some of the attributes contained CDATA
before and after XMLOut they don't anymore.
Input example:
<name><![CDATA[some text here]]></name>
Output : <name>some text here</name>
Is there an option to keep the CDATA attr? ( I know what CDATA stands for and why it's used)