gpt4 book ai didi

xpath - 在xpath中将字符串/字符连接n次

转载 作者:行者123 更新时间:2023-12-03 17:10:16 26 4
gpt4 key购买 nike

我在消息流中使用了一个映射节点,有一部分需要
在xpath函数中连接一个字符串/字符n次。
有什么办法可以做到这一点
xpath表达式或xpath构建函数(或两者)?
例如:将“〜”串联17次。

最佳答案

在XPath 2.0中很容易:

string-join(for $i in 1 to 17 return '~', '')


在XPath 3.0中仍然更容易:

string-join((1 to 17)!'~')


在XPath 1.0中,最好的选择可能是使用100个(或任意多个)波浪号初始化变量$ tildes,然后使用

substring($tildes, 1, 17) 

关于xpath - 在xpath中将字符串/字符连接n次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43136756/

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