[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] eliminating duplicates
Subject: Re: [xsl] eliminating duplicates
From: Steve <subsume@xxxxxxxxx>
Date: Thu, 10 May 2007 16:11:10 -0400
|
On 5/10/07, Garvin Riensche <g.riensche@xxxxxxx> wrote:
If there was only one attribute, lets say "source" it would be simple:
<xsl:for-each
select="//edge[not(./@source=preceding-sibling::edge/@source)]">
<xsl:copy-of select="."/>
</xsl:for-each>
That wouldn't really work either. That would just assure you didn't
spit out a duplicate of the preceding record.
Someone will surely followup with more comprehensive suggestions about
xsl:key. I'd research it until then. =)
-Steve
|