gpt4 book ai didi

xslt - 如何获取 XSLT 中字符串的最后一个字符以便将其添加到 HTML 输出中?

转载 作者:行者123 更新时间:2023-12-02 11:30:55 25 4
gpt4 key购买 nike

我对 XSLT 非常陌生,只需要获取 XML 值的最后一个字母并将该字符添加到我的 HTML 输出中。

最佳答案

使用 XPath 表达式

substring(., string-length(.), 1)

或者,以 XSLT 方式

<xsl:value-of select="substring(., string-length(.), 1)" />

这是可行的,因为 XPath 从 1 开始计数,而不是 0。

关于xslt - 如何获取 XSLT 中字符串的最后一个字符以便将其添加到 HTML 输出中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41917990/

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