我會通過使用vbs將我的鏈接更改爲小寫。 xml文件具有不同的結構。使反洗錢屬性小寫
在每個文件中,我想使屬性src的值爲小寫。 有人可以告訴我如何通過使用vbs來更改src的屬性值嗎?
我的問題是如何讀取XML文件,找到值並將其寫回到xml文件。
這個例子顯示了我想要做的事情。
源例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>
結果示例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>