RE: [xsl] a node child

Subject: RE: [xsl] a node child
From: "Sergiu Ignat" <sergiu@xxxxxxxxxx>
Date: Wed, 15 Oct 2003 14:24:19 +0300
<xsl:if test="childnodename">...</xsl:if>
<xsl:if test="@attributename">...</xsl:if>

If in the test statement you pass a name of a child or attribute it returns true if the child exists, otherwise it returns false.

To match all the persons with a "tel" child you can try:
<xsl:apply-templates select="person[tel]"/>

There is a deatailed explanation about this in any XSLT beginer's guide.
Sergiu

> Hi Andrew,
> first,thanks for the response.
> The example i gave was perhaps a bad example, but i want a 
> response in a
> more general case i.e once located on a node. How could we test the
> existence of a  given child node ?
> Thanks
> Abdessamad

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread