Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 8th, 2009, 11:22 AM
Authorized User
 
Join Date: Apr 2009
Posts: 31
Thanks: 0
Thanked 0 Times in 0 Posts
Default Count the Element

Hi guys,

i'm using xslt 2.0 for the below task, I have a doubt for how to count the element (author) inside the <authors>tag and If my author element count is more than 5 need to add the text i.e (,et al. ) in the output xml.

Any one help me please.......

Input xml:

Code:
<authors>
<author>
<surname>Assink</surname> 
<given-name>EHM</given-name>
</author>
<author>
<surname>Assink</surname> 
<given-name>EHM</given-name>
</author>
<author>
<surname>Assink</surname> 
<given-name>EHM</given-name>
</author>
<author>
<surname>Assink</surname> 
<given-name>EHM</given-name>
</author>
<author>
<surname>Assink</surname> 
<given-name>EHM</given-name>
</author>
<author>
 <surname>Assink</surname> 
 <given-name>EHM</given-name>
 </author>
Output needed:

Code:
<authors>
<author>
<surname>Assink</surname> 
<given-name>EHM</given-name>
</author>
<author>
 <surname>Assink</surname> 
 <given-name>EHM</given-name>
 </author>
<author>
 <surname>Assink</surname> 
 <given-name>EHM</given-name>
 </author>
<author>
 <surname>Assink</surname> 
 <given-name>EHM</given-name>
 </author>
<author>
 <surname>Assink</surname> 
 <given-name>EHM</given-name>
 </author>
<author>
 <surname>Assink</surname> 
 <given-name>EHM</given-name>
 </author>, et al.
 
Old May 8th, 2009, 11:33 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

If the context node is the authors element, count(author) will tell you how many author children it has.
__________________
Michael Kay
http://www.saxonica.com/
Author, XSLT 2.0 and XPath 2.0 Programmer\'s Reference
 
Old May 11th, 2009, 01:07 AM
Friend of Wrox
 
Join Date: Jun 2008
Posts: 291
Thanks: 9
Thanked 29 Times in 29 Posts
Thumbs up

Try this:
Code:
<xsl:template match="authors">
<authors>
<xsl:if test="count(author) &gt; 5">
<xsl:copy-of select="author"></xsl:copy-of>
<xsl:text>, et al.</xsl:text>
</xsl:if>
</authors>
</xsl:template>

__________________
Rummy
 
Old May 12th, 2009, 01:10 AM
Authorized User
 
Join Date: May 2009
Posts: 15
Thanks: 6
Thanked 0 Times in 0 Posts
Default

If the Input XML is having only 5 records with author element then the output will not come correctly. Use when instead of if.

Try this code.

<xsl:template match="authors">
<authors>
<xsl:choose>
<xsl:when test="count(author) > 5">
<xsl:copy-of select="author"></xsl:copy-of>
<xsl:text>, et al.</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:copy-of select="author"></xsl:copy-of>
</xsl:otherwise>
</xsl:choose>
</authors>
</xsl:template>
 
Old May 12th, 2009, 01:21 AM
Authorized User
 
Join Date: Apr 2009
Posts: 31
Thanks: 0
Thanked 0 Times in 0 Posts
Default

fantastic!!! thanks so much to all....





Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem adding element to the previous element dani1 XSLT 5 September 10th, 2008 01:38 AM
translate element name to element name lexzeus XSLT 3 September 4th, 2006 09:04 AM
is there any in built function to count page count g.tamilselvan MySQL 1 February 15th, 2006 07:43 AM
Count, sum, count a value, return records CongoGrey Access 1 April 18th, 2005 02:25 PM
adding of element and assigning to one element sushovandatta XSLT 2 November 16th, 2004 07:04 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.