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?


<xsl:if test="//LINKFAMILIA"> tests if the element exists anywhere in the
document.
<xsl:if test="/FAMILIAS/FAMILIA/LINKFAMILIA"> tests if it exists in a
particular context.

Michael Kay
Software AG
home: Michael.H.Kay@ntlworld.com
work: Michael.Kay@softwareag.com

> -----Original Message-----
> From: owner-xsl-list@lists.mulberrytech.com
> [mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Carlos
> Sent: 26 April 2002 10:18
> To: XSL-List@lists.mulberrytech.com
> Subject: [xsl] Can any body says me how can i see if exist a node name
> or not?
>
>
> 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?
> thanks
>
> <FAMILIAS>
>     <FAMILIA>
>         <ORDENFAM>1</ORDENFAM>
>         <NOMBREFAM>example</NOMBREFAM>
>         <SUBFAMILIAS>
>              <SUBFAMILIA>
>                 <ORDENSUBFAM>1</ORDENSUBFAM>
>                 <NOMBRESUBFAM>example</NOMBRESUBFAM>
>                     <LINKSUBFAMILIA>dhg</LINKSUBFAMILIA>
>                 </SUBFAMILIA>
>                 <SUBFAMILIA>
>                     <ORDENSUBFAM>ey</ORDENSUBFAM>
>                     <NOMBRESUBFAM>example</NOMBRESUBFAM>
>                     <LINKSUBFAMILIA>ert</LINKSUBFAMILIA>
>                 </SUBFAMILIA>
>                 <SUBFAMILIA>
>                     <ORDENSUBFAM>3</ORDENSUBFAM>
>                     <NOMBRESUBFAM>example</NOMBRESUBFAM>
>                     <LINKSUBFAMILIA>asdf</LINKSUBFAMILIA>
>                 </SUBFAMILIA>
>                 <SUBFAMILIA>
>                     <ORDENSUBFAM>4</ORDENSUBFAM>
>                     <NOMBRESUBFAM>example</NOMBRESUBFAM>
>                     <LINKSUBFAMILIA>dsfg</LINKSUBFAMILIA>
>                 </SUBFAMILIA>
>             </SUBFAMILIAS>
>     </FAMILIA>
> <FAMILIA>
> <ORDENFAM>2</ORDENFAM>
> <NOMBREFAM>example</NOMBREFAM>
> <LINKFAMILIA>adsf</LINKFAMILIA>
> </FAMILIA>
> </FAMILIAS>
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


 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]