|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Can any body says me how can i see if exist a node
Hi Carlos,
> I have a xml file but i must to see if exist a particualr node
> (LINKFAMILIA) In i have writte xml how cai i find this node? there
> is in xslt exist term for find it?
Just try to select it:
/FAMILIAS/FAMILIA/LINKFAMILIA
That will either give you a node set of LINKFAMILIA elements or a node
set containing nothing at all. When you use a test on a node set, the
test is true if the node set contains something, and false if the node
set is empty. So you can use:
<xsl:if test="/FAMILIAS/FAMILIA/LINKFAMILIA">
There is a LINKFAMILIA element in the document.
</xsl:if>
Cheers,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
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
|

Cart








