gpt4 book ai didi

xslt - 如何将字符串连接到 xsl :value-of select=". ..?

转载 作者:行者123 更新时间:2023-12-03 05:02:54 25 4
gpt4 key购买 nike

<a>
<xsl:attribute name="href">
<xsl:value-of select="/*/properties/property[@name='report']/@value" />
</xsl:attribute>
</a>

有什么办法可以连接另一个字符串

<xsl:value-of select="/*/properties/property[@name='report']/@value"  />

除了报表属性值之外,我还需要将一些文本传递给 href 属性

最佳答案

您可以在此处使用名为 concat 的命名相当合理的 xpath 函数

<a>
<xsl:attribute name="href">
<xsl:value-of select="concat('myText:', /*/properties/property[@name='report']/@value)" />
</xsl:attribute>
</a>

当然,这里不一定是文本,它可以是另一个用于选择元素或属性的 xpath 表达式。您可以在 concat 表达式中使用任意数量的参数。

请注意,您可以在此处使用属性值模板(由大括号表示)来简化表达式

<a href="{concat('myText:', /*/properties/property[@name='report']/@value)}"></a>

关于xslt - 如何将字符串连接到 xsl :value-of select=". ..?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10395488/

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