|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: how to assign a NULL to a variable?
In XSLT 1.0 you have 4 datatypes: number, boolean, string and nodeset. The "most-null or nothingness" which you can have for these is 0, false, "" (empty string) or empty nodeset (such as is returned by /..) respectively and so these values are the choices to which you are limited to when deciding what you want to return to signify a "NULL" value aside from returning a special sentinel value, e.g. a string such as "(NULL)". Hope this helps. At 02:37 PM 26/07/2007 +0000, you wrote: >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> Justin Johansson *** A horse with no name is called Lambda ***
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Cast Your Vote
We need your help – Vote for DataDirect XML Products!
Winners and finalists announced at SOA World Conference in November. 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
|







