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

RE: Recursive counting

Subject: RE: Recursive counting
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Wed, 19 Jul 2006 16:38:39 +0100
RE:  Recursive counting
> Well after success with my first recursive template I was all 
> set to make one of my own, but now shamefully am coming to 
> the list for advice over something that appears quite simple.

First thing is to recognize this as a grouping problem. For each distinct
value of @type you need to do something.

In XSLT 2.0:

<xsl:for-each-group select="/*/options/o" group-by="@type">
  <xsl:sort select="current-grouping-key()"/>
  <out type="{current-grouping-key()}"
       count="{count(/*/person[@pref=current-group()]}"/>
</xsl:for-each-group>

> 
> XML ------->
> 
> <options>
>    <o type="A">who</o>
>    <o type="A">what</o>
>    <o type="A">when</o>
>    <o type="B">how</o>
>    <o type="B">nexus</o>
>    <o type="B">triumph</o>
>    <o type="C">alligator</o>
>    <o type="C">spurn</o>
> </option>
> 
> <people>
>   <person pref="who" />
>   <person pref="nexus" />
>   <person pref="how" />
>   <person pref="alligator" />
>   <person pref="spurn" />
>   <person pref="triumph" />
>      .... etc ....
> </people>
> 
> 
> Desired output ------->
> 
> <!-- @count corresponds to number of times  the preference 
> appeared among the list of <people> --->
> 
>   <out type="A" count="1" />
>   <out type="B" count="3" />
>   <out type="C" count="1" />
> 
> 
> Stipulation: --------->
> 
> <out>'s must be sorted alphabetically, regardless of <option> order.

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.