xsl-list
[Top] [All Lists]

Re: Checking if node has data

2004-08-03 00:19:33
Hi,

> I can check if a nodes exists or not in XSL not sure how to check if it has
> any data.

Just define what any data means to you and check that for existence.
For instance if by has data you mean that it should have at least one text node then you can simply check if a text node exists inside fruits:

<xsl:if test="mygarden/fruits/text()">
...
</xsl:if>

If any data means any element then you will get

<xsl:if test="mygarden/fruits/*">
...
</xsl:if>

Hope that helps,
George
-----------------------------------------------
George Cristian Bina
<oXygen/> XML Editor & XSLT Editor/Debugger
http://www.oxygenxml.com


Subbiah wrote:
Hi, I want to find out if a node say <fruits></fruits> in my XML file has data
in it or not and then decide as to what I need to do.

I can check if a nodes exists or not in XSL not sure how to check if it has
any data.

<xsl:if test="mygarden/fruits='true'">
.... Do something
</xsl:if>


Any help ?

regards,
raman


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