我是 XSL 的新手,我正在寻找一种方法来替换 XML 中的文本。我的源 XML 是:
<A>
<key>One</key>
<string>value1</string>
<key>Two</key>
<string>value2</string>
<key>Three</key>
<string>value3</string>
</A>
我想要的是只替换其中一个元素。结果应该是:
<A>
<key>One</key>
<string>value1</string>
<key>Two</key>
<string>xxx</string> <---- change this (for key Two)
<key>Three</key>
<string>value3</string>
</A>
如何创建一个 xsl 样式表来管理它?
提前致谢!