gpt4 book ai didi

xml - XPath 1.0:转换时间字符串

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

如何使用XPAth 1.0将这种格式dd/mm/yyyy hh:mm:ss的字符串转换为这种格式yyyy/mm/dd hh:mm:ss

最佳答案

不幸的是,XPath 1.0甚至不支持正则表达式。因此,我认为您一直在使用子字符串函数。

以下内容不是很精巧,但是应该可以使用($date是您的输入字符串)。它将不同的部分分开,然后再重建字符串。

concat(
substring-after(substring-after(substring-before($date, ' '), '/'), '/'),
'/',
substring-before(substring-after(substring-before($date, ' '), '/'), '/'),
'/',
substring-before(substring-before($date, ' '), '/'),
' ',
substring-after($date, ' ')
)

关于xml - XPath 1.0:转换时间字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24808250/

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