I am exporting XML files from a system and need to comment out or delete the second line of code in each file (there are about 200 files).
This can be done manually but I was wondering if a VB script is able to do this. If so do you have any ideas of how?
Example of file:
<?xml version="1.0" encoding="ISO-8859-1"?>
<DOCTYPE POWERMART SYSTEM "powrmart.dtd">
Desired Results:
<?xml version="1.0" encoding="ISO-8859-1"?>
OR commented out:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--DOCTYPE POWERMART SYSTEM "powrmart.dtd"-->
Thanks,
A