gpt4 book ai didi

xslt - 包含值 xslt2

转载 作者:行者123 更新时间:2023-12-02 07:31:15 24 4
gpt4 key购买 nike

如何检查一个字符串数组是否包含一个字符串?

<xsl:if test="inArray('a', $array)"></xsl:if>

最佳答案

如果数组是指序列,只需使用 =...

    <xsl:variable name="array" select="('a','b','c')"/>
<xsl:if test="$array='a'"></xsl:if>

您还可以测试数组/序列中的多个值(如果 ac 存在于序列中,此示例将计算为真):

    <xsl:if test="$array=('a','c')"></xsl:if>

关于xslt - 包含值 xslt2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21483158/

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