xsl-list
[Top] [All Lists]

Re: comparing nodes by name

2003-08-05 09:36:07

I do have the following Problem. 
You didn't say whether it is an XSLT problem or an Xpath problem
I'll assume XSLt as that's a bit easier.

If the current node is DDD

<xsl:variable name="ddd" select="."/>
<xsl:for-each select="../AAA/BBB/*">
 <xsl:variable name="n" select="name()"/>
 <xsl:if test="not($ddd/*[name()=$n])">
  <xsl:copy-of select="."/>
 </xsl:if>
</xsl:for-each>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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



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