Subject: RE: Can any body says me how can i see if exist a node name or not?
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Fri, 26 Apr 2002 11:12:07 +0100
|
<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@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx
> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Carlos
> Sent: 26 April 2002 10:18
> To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
> Subject: 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
|