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

Re: finding the last element with attribute

Subject: Re: finding the last element with attribute
From: "Mukul Gandhi" <gandhi.mukul@xxxxxxxxx>
Date: Mon, 19 Feb 2007 21:52:34 +0530
Re:  finding the last element with attribute
On 2/19/07, Robert Walpole <robert.walpole@xxxxxxxxxxxx> wrote:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="2.0">
   <xsl:template match="/">
       <xsl:for-each select="areaserved/district/option">
           <xsl:if test="./@selected = 'selected'">
               <xsl:value-of select="."/>
               <xsl:if test="position() != last()">,&#160;</xsl:if>
           </xsl:if>
       </xsl:for-each>
   </xsl:template>
</xsl:stylesheet>

I believe, Andrew's suggestion would work for you. The error in above logic is - position() & last() are referring to 'position' and 'last' of node-set formed by areaserved/district/option, and not areaserved/district/option[@selected = 'selected'] (as Andrew just pointed).

--
Regards,
Mukul Gandhi

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.