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 August 9th, 2005, 10:36 AM
Authorized User
 
Join Date: Jun 2003
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Default Determining which of 2 nodes in this node

I have 2 XML documents which differ by only a single node. In one of the documents, I have a <Complete> node within a <Student> node. In the other document, I have a <Score> node within the Student one. I currently have a for-each tag to loop through all the Student node, but I need to figure out how to use the xsl:if tag to determine whether the Student node contains a Score node or a Complete one.
I'm sure it's probably something very simple, but I can't figure out how to check for a specific node name.

Can someone please help me?

Chris

Here is a snippet of each document:
Code:
<Report>
    <Module Name="modName">
        <Student>
            <Name>Doe, John</Name>
            <Score>87</Score>
        </Student>
...
...
</Report>
And the other document
Code:
<Report>
    <Module Name="modName">
        <Student>
            <Name>Doe, John</Name>
            <Complete>True</Complete>
        </Student>
    </Module>
...
...
</Report>
Basically, my question is: how do I code the xsl:if tag to check for the Complete or the Score tag?

Chris
 
Old August 9th, 2005, 11:45 AM
Authorized User
 
Join Date: Jul 2004
Posts: 53
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi Chris,

<xsl:choose> and <xsl:when>'s might be what you are looking for

<xsl:choose>
  <xsl:when test="Score">

  </xsl:when>
  <xsl:when test="Complete">

  </xsl:when>
  <xsl:otherwise>

  </xsl:otherwise>
</xsl:choose>






Similar Threads
Thread Thread Starter Forum Replies Last Post
The reference node is not a child of this node.XSL XMLUser XSLT 2 February 25th, 2008 05:22 AM
how to append child node after an node in XML + C# vishnu108mishra XML 5 November 13th, 2007 05:30 AM
Duplicate nodes get the value from first node dev.user06 XSLT 6 August 8th, 2006 11:33 AM
Copying Source Node attributes to output node pvsat XSLT 2 November 3rd, 2005 09:46 AM
Help: Select every node except these nodes arcuza XSLT 8 May 25th, 2005 08:07 AM





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