[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: XPATH total count of multiple child nodes

Subject: Re: XPATH total count of multiple child nodes
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Tue, 03 May 2005 13:31:22 -0400
xsl count child nodes
Edward,

At 01:22 PM 5/3/2005, you wrote:
My new problem is that I am trying to build a conditional statement based on a count of the number of child elements. There is an element "dates" that contains child elements containing particular dates. Normally, I would use something like:

Check if any of them exisit at all...

<xsl:if test="(filed) or (decided) or (submitted) or (revised) or (term)">

then, see if there is more than one of them ...

<xsl:if test="count(date) > 1">

However, the child elements do not all have the same name. They can have one of five different names (filed, decided, submitted, revised, or term), which may appear in almost any combination. There are no other child elements, so I was hoping there was a simple way to count the total number of child elements without specifying them by name?

Sure, that's simply "child::*" ("*" is a node test that matches any element, or more correctly, any element except when on the attribute and namespace axes, wherein it matches an attribute or a namespace node), which is long for "*". So you need


<xsl:match="dates">
  ... whatever you do for the wrapper if anything ...
  <xsl:if test="*">
    ... whatever you do now you know there are children ...
  </xsl:if>
</xsl:match>

Note that ordinarily we don't have to conduct this test, however, since apply-templates just traverses to whatever child elements we have (or actually, to child nodes of any type). There are cases, however, when you may have

<dates></dates>

and you want to distinguish that case. You can also test="not(*)" which will be true if you *don't* have any child elements.

Similarly, count(*) returns a number representing how many child elements you have, so you could test="count(*) > 2" which tests true when there are three or more element children.

If you also need to test for comments or processing instructions, another node test is "node()" -- in XPath, child::node() will return all child nodes of whatever type, not just elements.

Enjoy,
Wendell


====================================================================== Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx Mulberry Technologies, Inc. http://www.mulberrytech.com 17 West Jefferson Street Direct Phone: 301/315-9635 Suite 207 Phone: 301/315-9631 Rockville, MD 20850 Fax: 301/315-8285 ---------------------------------------------------------------------- Mulberry Technologies: A Consultancy Specializing in SGML and XML ======================================================================

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.