我有以下XSL片段:
<xsl:for-each select="item">
<xsl:variable name="hhref" select="link" />
<xsl:variable name="pdate" select="pubDate" />
<xsl:if test="hhref not contains '1234'">
<li>
<a href="{$hhref}" title="{$pdate}">
<xsl:value-of select="title"/>
</a>
</li>
</xsl:if>
</xsl:for-each>
if语句不起作用,因为我无法计算contains的语法。我怎样才能正确表达xsl:if?
答案 0 :(得分:104)
当然有!例如:
<xsl:if test="not(contains($hhref, '1234'))">
<li>
<a href="{$hhref}" title="{$pdate}">
<xsl:value-of select="title"/>
</a>
</li>
</xsl:if>
语法为:contains(stringToSearchWithin, stringToSearchFor)
答案 1 :(得分:6)
确实有一个xpath包含的函数应该类似于:
<xsl:for-each select="item">
<xsl:variable name="hhref" select="link" />
<xsl:variable name="pdate" select="pubDate" />
<xsl:if test="not(contains(hhref,'1234'))">
<li>
<a href="{$hhref}" title="{$pdate}">
<xsl:value-of select="title"/>
</a>
</li>
</xsl:if>
答案 2 :(得分:6)
答案 3 :(得分:2)
答案 4 :(得分:1)
答案 5 :(得分:1)
<xsl:if test="not contains(hhref,'1234')">