Re: [xsl] Is a variable referencing a node

Subject: Re: [xsl] Is a variable referencing a node
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Mon, 29 Sep 2008 11:42:09 -0400
Hi,

To add to what others have said, here is how the OP can fix his problem. (Apologies if this flew by and I didn't see it.)

xsl:when test="string($foo)" will test as Boolean false when the RTF has a string value of "", and true when it doesn't.

Cheers,
Wendell

<xsl:variable name="foo">
  <xsl:choose>
    <xsl:when test="$aVar='someFlag'">
      <xsl:value-of select="/path/to/some/element"/>
    </xsl:when>
    <xsl:otherwise>
      <xsl:value-of select="/path/to/another/element"/>
    </xsl:otherwise>
</xsl:variable>
<xsl:choose>
  <xsl:when test="$foo">
    <xsl:value-of select="$foo"/>
  </xsl:when>
  <xsl:otherwise>--</xsl:otherwise>
</xsl:choose>



====================================================================== Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx Mulberry Technologies, Inc. http://www.mulberrytech.com 17 West Jefferson Street Direct Phone: 301/315-9635 Suite 207 Phone: 301/315-9631 Rockville, MD 20850 Fax: 301/315-8285 ---------------------------------------------------------------------- Mulberry Technologies: A Consultancy Specializing in SGML and XML ======================================================================

Current Thread