I will change my links to lower case by using vbs. The xml files have different structures.
In every file I would like to make the value of attribute src to lower cases. Can someone show me how to change the attribute values of src by using vbs?
My problem is how to read the xml file, find the value and write it back to the xml file.
This example shows what I want to do.
Source Example XML
<body>
<title>example</title>
<p>this is <xref src="TEST.xml#548L521">test</xref> file</p>
<table>
<tr>
<td><p>this is <xref src="StAckOverflow.xml">test</xref> file</p></td>
<td><p>this is test file</p></td>
</tr>
</table>
</body>
Result Example XML
<body>
<title>example</title>
<p>this is <xref src="test.xml#548l21">test</xref> file</p>
<table>
<tr>
<td><p>this is <xref src="stackoverflow.xml">test</xref> file</p></td>
<td><p>this is test file</p></td>
</tr>
</table>
</body>