vote up 1 vote down star
1

how chan i check if a value is null or empty with xsl?

eg if categoryName is empty? im using a when choose construct

eg:

 <xsl:choose>
    <xsl:when test="categoryName !=null">
        <xsl:value-of select="categoryName " />
      </xsl:when>
      <xsl:otherwise>
        <xsl:value-of select="other" />
      </xsl:otherwise>
 </xsl:choose>
flag

57% accept rate
Can you expand the code example? – Nick Allen - Tungle139 May 5 at 16:48

3 Answers

vote up 3 vote down check
test="categoryName != ''"
link|flag
The detailed semantics of this test is: return true if there is at least one categoryName element whose string value is an empty string. – jelovirt May 11 at 6:08
vote up 5 vote down

Absent of any other information, I'll assume the following XML:

<group>
    <item>
        <id>item 1</id>
        <CategoryName>blue</CategoryName>
    </item>
    <item>
        <id>item 2</id>
        <CategoryName></CategoryName>
    </item>
    <item>
        <id>item 3</id>
    </item>
    ...
</group>

A sample use case would look like:

<xsl:for-each select="/group/item">
    <xsl:if test="CategoryName">
        <!-- will be instantiated for item #1 and item #2 -->
    </xsl:if>
    <xsl:if test="not(CategoryName)">
        <!-- will be instantiated for item #3 -->
    </xsl:if>
    <xsl:if test="CategoryName != ''">
        <!-- will be instantiated for item #1 -->
    </xsl:if>
    <xsl:if test="CategoryName = ''">
        <!-- will be instantiated for item #2 -->
    </xsl:if>
</xsl:for-each>
link|flag
Nice to explain the different cases. However, your example is misleading as only the first xsl:when whose test evaluates to true() will be matched, i.e. case 3 and 4 will never match because already case 1 has matched. – divo May 5 at 18:46
(continued) See w3.org/TR/…: "The content of the first, and only the first, xsl:when element whose test is true is instantiated." – divo May 5 at 18:53
I changed the sample to something more meaningful. – divo May 6 at 18:01
vote up 2 vote down

From here:

to test if the value of a certain node is empty

Depends what you mean by empty.

  • Contains no child nodes: not(node())
  • Contains no text content: not(string(.))
  • Contains no text other than whitespace: not(normalize-space(.))
  • Contains nothing except comments: not(node()[not(self::comment())])
link|flag

Your Answer

Get an OpenID
or

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