|
[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
[Recent Entries]
[Reply To This Message]
Re: Is a variable referencing a node
Subject: Re: 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
======================================================================

|
PURCHASE STYLUS STUDIO ONLINE TODAY!
Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!
Download The World's Best XML IDE!
Accelerate XML development with our award-winning XML IDE - Download a free trial today!
Subscribe in XML format
| RSS 2.0 |
|
| Atom 0.3 |
|
|