通过xquery更改元素的值
<category>
<catid>1</catid>
<cattext> sport </cattext>
</category>
我想使用 xquery 将元素
的文本更改为另一个元素,如“art”而不是 sport
<category>
<catid>1</catid>
<cattext> sport </cattext>
</category>
I want change text of element <cattext>
into another like "art" instead of sport by using xquery
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
输出:
Output:
如果您的引擎支持更新和脚本:
或者如果您不想保留更改,您可以转换它的副本:
这些代码片段在 http://try.zorba.io/
如果您的 XQuery 处理器不支持更新,Alejandro 的解决方案是首选。
if your engine supports updates and scripting:
or if you don't want to persist the changes you can transform a copy of it:
these code snippets successfully run on http://try.zorba.io/
If your XQuery processor doesn't support updates Alejandro's solution is top.