gpt4 book ai didi

XQuery:如何在 for 循环中正确追加 ,

转载 作者:行者123 更新时间:2023-12-02 03:38:11 26 4
gpt4 key购买 nike

所以我有这样的 xml 数据:

  <PhoneNumber>213-512-7457</PhoneNumber>
<PhoneNumber>213-512-7465</PhoneNumber>

使用此 XQuery:

<PhoneNumberList>
{
for $phone in $c//PhoneNumber
let $phoneStr := ""
return concat($phoneStr, $phone)
}
</PhoneNumberList>

我得到:

<PhoneNumberList>213-512-7457213-512-7465</PhoneNumberList>

但我实际上想要:

<PhoneNumberList>213-512-7457, 213-512-7465</PhoneNumberList>

有人可以阐明如何做到这一点吗?

最佳答案

<PhoneNumberList>
{
string-join($c//PhoneNumber, ", ")
}
</PhoneNumberList>

关于XQuery:如何在 for 循环中正确追加 ,,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1739479/

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