Re: [xsl] Handling Duplicate Lines in XSL

Subject: Re: [xsl] Handling Duplicate Lines in XSL
From: "J.Pietschmann" <j3322ptm@xxxxxxxx>
Date: Fri, 31 Oct 2003 21:06:14 +0100
Murali Korrapati wrote:
But I have a slightly different problem though.

<xsl:for-each select="root[not(foo/bar = preceding-sibling::foo/bar)]">
    <xsl:value-of select="."/><br/>
</xsl:for-each>

You probably want to select the foo instead of the root element: <xsl:for-each select="root/foo[not(bar = ../preceding-sibling::foo/bar)]">

but, it doesn't seem like working.
Well, there are many ways to "not work". You should be
more specific, for example "no output" or "I got this
output ..."

J.Pietschmann



XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list


Current Thread