xsl-list
[Top] [All Lists]

RE: xsl:if

2005-01-17 15:12:03
Joris,
 I have one more question.
I  have 2 xml stream to get 1 xml output. I want the value of from both these 
input xml. Do you know how i can do that.

Also, will work using xalan java

-----Original Message-----
From: Joris Gillis [mailto:roac(_at_)pandora(_dot_)be]
Sent: Monday, January 17, 2005 5:07 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] xsl:if


Tempore 22:44:52, die 01/17/2005 AD, hinc in  
xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com scripsit Bhaskar, Rajan 
<RBhaskar(_at_)cvs(_dot_)com>:

 If the attribute value from the input xml is optional. how do i write  
my xsl:if so that if the value is present get the value else default to  
"unknown"

full syntax:
<xsl:choose>
        <xsl:when test="@value">
                <xsl:value-of select="@value"/>
        </xsl:when>
        <xsl:otherwise>
                <xsl:text>unknown</xsl:text>
        </xsl:otherwise>
</xsl:choose>

shortcut:
<xsl:value-of select="@value"/><xsl:if test="not(@value)">unknown</xsl:if>


regards,
-- 
Joris Gillis (http://www.ticalc.org/cgi-bin/acct-view.cgi?userid=38041)
"Et ipsa scientia potestas est"  - Francis Bacon , Meditationes sacrae

--~------------------------------------------------------------------
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>
--~--


--~------------------------------------------------------------------
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>