Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 28th, 2008, 06:57 AM
Authorized User
 
Join Date: Jul 2008
Posts: 53
Thanks: 0
Thanked 0 Times in 0 Posts
Default How to compare the value

How to compare the value

such as i have value SN_Id='SMS20', i need to compare this SN_Id with the Input.xml file...

[u]file.xsl</u>

<xsl:for-each select="document($root/Envelope/Part/@File)/Groupings/BundleServices/value">
    <xsl:if test="../value='$SN_Id'">
        BUN
    </xsl:if>
</xsl:for-each>


[u]Input.xml</u>

<Groupings>
<BundleServices>
    <value>SMS20</value>
    <value>SMS40</value>
    <value>SMS80</value>
</BundleServices>
</Groupings>

[u]Expected Output:</u> BUN
 
Old July 28th, 2008, 07:01 AM
Friend of Wrox
 
Join Date: Nov 2007
Posts: 1,243
Thanks: 0
Thanked 245 Times in 244 Posts
Default

Try
Code:
<xsl:for-each
  select="document($root/Envelope/Part/@File)/Groupings/BundleServices/value[. = $SN_Id]">BUN</xsl:for-each>
--
  Martin Honnen
  Microsoft MVP - XML
 
Old July 28th, 2008, 07:29 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Try

<xsl:for-each select="document($root/Envelope/Part/@File)/
         Groupings/BundleServices/value[.=$SN_id]">
        BUN
</xsl:for-each>

Michael Kay
http://www.saxonica.com/
Author, XSLT 2.0 and XPath 2.0 Programmer's Reference
 
Old July 28th, 2008, 07:48 AM
Authorized User
 
Join Date: Jul 2008
Posts: 53
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks. Its perfect.





Similar Threads
Thread Thread Starter Forum Replies Last Post
compare a cell with nothing popaerou Excel VBA 2 October 26th, 2008 12:35 PM
compare Neha XSLT 6 July 24th, 2008 08:11 AM
compare nmnm XSLT 3 April 24th, 2007 08:13 AM
compare these date fields and compare and get the susanring Oracle 1 July 24th, 2006 04:58 PM
Compare 2 tables.... Seb_soum Classic ASP Databases 2 June 4th, 2004 05:47 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.