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

Subject: Re: [xsl] function last() not matching the last element tag
From: "Mukul Gandhi" <gandhi.mukul@xxxxxxxxx>
Date: Fri, 26 Jan 2007 21:50:32 +0530
On 1/26/07, Ross Buchanan <ross-buchanan@xxxxxxxxxx> 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

Current Thread