xsl-list
[Top] [All Lists]

[xsl] how to assign a NULL to a variable?

2007-07-26 07:38:01
HI, guru
Do you know how to assing a NULL to variable in XSL1.0?  Thank you.

My problem is I want write a code as follows, but I do not know how to set a NULL value at the following "otherwise" case:

<xsl:variable name="myvar">
  <xsl:choose>
    <xsl:when test="conditon a">
         <xsl:value-of selcet="xxx"/>
    </xsl:when>
    <xsl:when test="conditon b">
         <xsl:value-of selcet="xxx"/>
    </xsl:when>
    <xsl:otherwise>
<!-- WANT TO return a NULL value here!!!!! But It return a "" not NULL -->
    </xsl:otherwise>
  </xsl:choose>
</xsl:variable>

<xsl:if test="$myvar">
.....
</xsl:if>

_________________________________________________________________
享用世界上最大的电子邮件系统― MSN Hotmail。 http://www.hotmail.com

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>