Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 XML 形式的配置文件。我想写一个脚本来更改文件中的某些属性,例如
<database-param> <url>http://foo.doo</url> </database-param>
我需要找到<url>内部<database-param>和进一步,然后找到并保存+替换 and 之间的<url>字符串</url>。
<url>
<database-param>
</url>
您可以使用 Microsoft 的 XML Parser 在 VBScript 中读取、写入和编辑 XML 文件。您可以阅读下面我的文章以了解更多信息。
在 WSH 中创建 XML 文档
在 WSH 中读取 XML 文件
在 WSH 中修改 XML 文件