[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: compare 2 node set???

Subject: Re: compare 2 node set???
From: "Kalyan Kumar Mudumbai" <kalyan_tech@xxxxxxxxxxxxxx>
Date: 8 Aug 2002 05:14:13 -0000
xslt compare nodes
This might work for your case:

<xsl:for-each select="//SrcData/*">
<xsl:if test="$file1//SrcData/*[local-name()=$node_name]">
</xsl:for-each>

which you can write in the 'search' template.

Thanks,
Kalyan.

On Thu, 08 Aug 2002 aruniima.chakrabarti@xxxxxxxxxxxxxxxxxx wrote :
Hello Everyone,
How can run through 2 different set of nodes & compare whether set 1
exists within set 2 ???
i.e do a recursive search.... I am able to process in case the node
is present in both sets but how do I go ahead in case it is not. i.e how can
I keep track in case the node does not exist in the other set...
Following is the code...


<xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:ms="urn:schemas-microsoft-com:xslt">


<xsl:param name="file1"
select="document('d:/aruniima/CompareXml/Validator_Response.xml')" />
<xsl:template match="/">
<html>
<body>
<table>
<xsl:for-each select="$file1//SrcData/*">
<td><xsl:variable name="node_1" select="name()"/></td>
<xsl:value-of select="$node_1"/>
<tr>
<xsl:call-template name="search">
<xsl:with-param name="node_res"
select="$node_1"/>
</xsl:call-template>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
<xsl:template name="search">
<xsl:param name="node_res"/>
<xsl:for-each select="//SrcData/*">
<xsl:variable name="node_2" select="name()"/>
<xsl:call-template name="compare">
<xsl:with-param name="node_response"
select="$node_res"/>
<xsl:with-param name="node_request"
select="$node_2"/>
</xsl:call-template>
</xsl:for-each>
</xsl:template>
<xsl:template name="compare">
<xsl:param name="node_response"/>
<xsl:param name="node_request"/>
<xsl:if
test="ms:string-compare($node_response,$node_request) = 0">
<xsl:call-template name="display">
<xsl:with-param name="status"
select="'Present'"/>
<xsl:with-param name="in_request"
select="$node_response"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template name="display">
<xsl:param name="status"/>
<xsl:param name="in_request"/>
<td><xsl:value-of select="$in_request"/></td>
<td><xsl:value-of select="$status"/></td>
</xsl:template>
</xsl:stylesheet>


Regards,
aruniima


----------------------------------------------------------------------------


This message contains privileged and confidential information and is
intended only for the individual named. If you are not the intended
recepient you should not disseminate, distribute, store, print, copy or
deliver this message. Please notify the sender immediately by e-mail if you
have received this e-mail by mistake and immediately delete this e-mail from
your system.



E-mail transmission cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed, arrive late or
incomplete, or contain viruses. The sender therefore does not accept
liability for any errors or omissions in the contents of this message which
arise as a result of e-mail transmission. If verification is required
please request a hard-copy version.



--------------------------------------------------------------------------


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



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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.