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

Re: counting nodes based on text within

Subject: Re: counting nodes based on text within
From: Jörg Heinicke <joerg.heinicke@xxxxxx>
Date: Tue, 23 Oct 2001 23:29:33 +0200
muenchian counting nodes
If you know the values of choices, you can do the following:

<xsl:value-of select="count(/thexml/line/choice[.='item a'])"/>

A more generic version you can have with keys. My example uses the Muenchian
Method (http://www.jenitennison.com/xslt/grouping/muenchian.xml).

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output indent="yes"/>
  <xsl:key name="choices" match="choice" use="text()"/>

  <xsl:template match="thexml">
    <xsl:for-each select="line/choice[count(.|key('choices',text())[1])=1]">
      <xsl:value-of select="text()"/>
      <xsl:value-of select="count(key('choices',text()))"/>
    </xsl:for-each>
  </xsl:template>
</xsl:stylesheet>

Hope this helps,

Joerg

----- Original Message -----
From: "Nouwens, H.J.P." <H.J.P.Nouwens@xxxxxxxxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Tuesday, October 23, 2001 3:51 PM
Subject:  counting nodes based on text within


> Hi there, can you help me?
> I have a piece of xml like this. I want to convert it to al list (table)
of
> date, email adresses and choice. That I can do, that's easy.
> Now I want to start of the page with a summary like:
>
> number of people choose "item a" is 2
> number of people choose "item b" is 1
>
> The number of choices is limited to 5. I'm willing to duplicate a piece of
> code 5 times :-) But a generic solution will surely be nicer...
>
> Thanks!
>
> <thexml>
>   <line date="10-22-2001,11:32:01">
>         <Email>h.j.p.nouwens@xxxxxxxxxxxxxxx</Email>
>         <choice>item a</choice>
>   </line>
>   <line date="10-22-2001,11:33:04">
>         <Email>h.j.p.nouwens@xxxxxxxxxxxxxxx</Email>
>         <choice>item b</choice>
>   </line>
>   <line date="10-22-2001,11:36:26">
>         <Email>J.Jansen@xxxxxxxxxxxxxxx</Email>
>         <choice>item a</choice>
>   </line>
> </thexml>
>
> Hans Nouwens


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


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.