Hi!
How can I modify a XML file with Perl? I have been using XML Simple to read the XML file, now I want to modify a value in it, but I can not do it.
For example:
My XML
<xml>
<computers>
<os>Unix</os>
</computers>
</xml>
How can I change the value Unix to Solaris.
This is just an example.
Help!!
Thank you.