[xsl] Counting problem

Subject: [xsl] Counting problem
From: aruniima.chakrabarti@xxxxxxxxxxxxxxxxxx
Date: Thu, 22 Aug 2002 17:11:40 +0530
Hello everyone,
 	I need count number of times a value occurs as attribute value....
i.e a value of  attribute "CAPTION"
How can I do this?? 
This my current xsl sheet which prints the value of the "CAPTION" attribute
sorted in ascending order...

<?xml version='1.0'?>
<xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; >

<xsl:template match="/">
<table>

		<tr><td><b>Caption</b></td><td><b>Task Code</b></td></tr>
		<xsl:for-each
select="//Task/Labels/Label/@*[name()='CAPTION']">
			<xsl:sort select="."/>
			<xsl:if test="string-length(.) != 0">
				<xsl:if test="not(. =
preceding::Label/@CAPTION)">
					<tr bgcolor="#fffff0">
						<td><xsl:value-of
select="."/></td>
						<td><xsl:value-of
select="ancestor::*[name()='Task']/@*[name()='id']"/></td>
						<td><xsl:value-of
select="ancestor::*[name()='Task']/@*[name()='title']"/></td>
					</tr>
				</xsl:if>
			</xsl:if>
		</xsl:for-each>
			

</table>
</xsl:template>

</xsl:stylesheet>


Regards,
aruniima

----------------------------------------------------------------------------

This message contains privileged and confidential information and is
intended only for the individual named. If you are not the intended
recepient you should not disseminate, distribute, store, print, copy or
deliver this message. Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and immediately delete this e-mail from
your system.


E-mail transmission cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed, arrive late or
incomplete, or contain viruses. The sender therefore does not accept
liability for any errors or omissions in the contents of this message which
arise as a result of e-mail transmission.  If verification is required
please request a hard-copy version.


--------------------------------------------------------------------------

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


Current Thread