gpt4 book ai didi

xml - 如何通过 XQuery 从 XML 中获取所有元素

转载 作者:数据小太阳 更新时间:2023-10-29 02:25:39 25 4
gpt4 key购买 nike

我需要通过 XQuery 获取给定文件中存在的所有 XML 元素。例如:

<xml>
<a>attr="one"
<b>attr2="in-a"
<c>leaf</c>
</b>
</a>
</xml>

输出应返回以下内容:

<xml>,<a>,<b>,<c> 

如果可能,以分层方式进行。我只需要使用 XQuery。

感谢任何帮助。谢谢。

最佳答案

这应该有效,其中 /test.xml 包含文档:

fn:string-join(fn:doc('/test.xml')//*/(concat(name(.), ' > ')))

关于xml - 如何通过 XQuery 从 XML 中获取所有元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45190347/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com