vote up 3 vote down star

I have the following snippet of 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>

The if statement does not work because I haven't been able to work out the syntax for contains. How would I correctly express that xsl:if?

flag

73% accept rate

6 Answers

vote up 9 vote down check

Sure there is! For instance:

<xsl:if test="not(contains($hhref, '1234'))">
  <li>
    <a href="{$hhref}" title="{$pdate}">
      <xsl:value-of select="title"/>
    </a>
  </li>
</xsl:if>

The syntax is: contains(stringToSearchWithin, stringToSearchFor)

link|flag
vote up 2 vote down

there is indeed an xpath contains function it should look something like:

<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>

link|flag
vote up 1 vote down
<xsl:if test="not contains(hhref,'1234')">
link|flag
Does the not operator work without a parentheses? If so, I didn't know that. – Cerebrus Feb 20 at 15:27
vote up 1 vote down

From Zvon.org XSLT Reference:

XPath function: boolean contains (string, string)

Hope this helps.

link|flag
vote up 1 vote down

Use the standard XPath function contains().

Function: boolean contains(string, string)

The contains function returns true if the first argument string contains the second argument string, and otherwise returns false

link|flag
vote up 1 vote down

It should be something like...

<xsl:if test="contains($hhref, '1234')">

(not tested)

See w3schools (always a good reference BTW)

link|flag
In the lines of... ? – Leandro López Feb 20 at 15:22
Code formatting corrected. – Tomalak Feb 20 at 15:27
@cadrian: The curly braces are wrong. – Tomalak Feb 20 at 15:28
Thanks for your comments! – cadrian Feb 20 at 21:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.