gpt4 book ai didi

xslt - 仅去除前导空格

转载 作者:行者123 更新时间:2023-12-04 17:58:45 24 4
gpt4 key购买 nike

给定元素:

 <comments>  comments
go here
</comments>

如何去除可能是多个前导空格字符的内容。我不能使用归一化空间,因为我需要保留换行符等。 XSLT 2.0 好的。

最佳答案

使用 replace()功能:

replace($input,'^ +','')

只处理前导空格字符直到第一个非空格。如果要删除所有前导空白字符(即空格、nl、cr、制表符)直到第一个非空白字符,请使用:
replace($input,'^\s+','')

关于xslt - 仅去除前导空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3190228/

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