This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Can any body says me how can i see if exist a node name or not?


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]