xsl-list
[Top] [All Lists]

RE: Re: [xsl] function last() not matching the last element tag

2007-01-26 09:38:14
You might try 
<xsl:template match="/doc/p[position()=last()]">

-- 
Charles Knell
cknell(_at_)onebox(_dot_)com - email



-----Original Message-----
From:     Mukul Gandhi <gandhi(_dot_)mukul(_at_)gmail(_dot_)com>
Sent:     Fri, 26 Jan 2007 21:50:32 +0530
To:       xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject:  Re: [xsl] function last() not matching the last element tag

On 1/26/07, Ross Buchanan <ross-buchanan(_at_)bethel(_dot_)edu> wrote:
I am running into a problem where I need to find the first paragraph
element of a document and the last paragraph element to give a unique
class to each. I am able to find the first paragraph with <xsl:template
match="/doc/p[1]"> but am not able to match the last element with
<xsl:template match="/doc/p[last()]">.

This template will probably work (to match last 'p' element)

<xsl:template match="p[not(following-sibling::p)]">
  <!-- template contents -->
</xsl:template>

(not tested)

-- 
Regards,
Mukul Gandhi

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--




--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--