Subject: Re: finding out distinct node/values
From: Andrew Welch <andrew.j.welch@xxxxxxxxx>
Date: Wed, 10 Feb 2010 16:57:34 +0000
|
On 10 February 2010 16:42, Anil Kumar Veeramalli
<anil.v@xxxxxxxxxxxxxxxxxxxxx> wrote:
> Thanks Andrew for your reply. some where in the documentation I read that,
>
> distinct-values doesn't support in XSL1.0...is that true?
ha I thought it was......
You will have to use the key based approach instead:
<xsl:key name="elems-by-value" match="*" use="."/>
with
//*[name() = $name][generate-id(.) = generate-id(key('elems-by-value', .)[1])]
cheers
--
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/
|