|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Navigating an XML file with xsl:for-each etc.
> So I have to check what are inside the "add" and compare them
> one by one
> against those under "delete". If equal then output. I tried
> to explain
> it better in my shopping list example. :)
>
> Do you think such a generic thing is possible?
Yes, it's entirely possible, but you still haven't given a very precise
specification. For example if there are two identical elements under "add"
do you require exactly two matching elements under "delete"? Or at least
two? Or is one enough?
You could start with something like
<xsl:for-each select="add/*">
<xsl:if test="../../delete/*[name()=current()/name()]">
... there's a match ...
</xsl:if>
</xsl:for-each>
Michael Kay
http://www.saxonica.com/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








