I am new to perl script, I want convert character entity to hexa decimal entity.. how can i convert this file using xml::Twig module?
File sample.xml:
<?xml version="1.0"?>
<root>
<text>This testing—value.</text>
</root>
Output as:
<?xml version="1.0"?>
<root>
<text>This testing—value.</text>
</root>
how to include this conversion in xml twig....