xsl-list
[Top] [All Lists]

Re: Handling Duplicate Lines in XSL

2003-10-31 13:06:14
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



<Prev in Thread] Current Thread [Next in Thread>