Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9230409
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:49:06+00:00 2026-06-18T05:49:06+00:00

I have two node sets where I’d like to output the value(s) of (a)

  • 0

I have two node sets where I’d like to output the value(s) of (a) node(s) if there are no matches. The logic would be the following:

If any of the values of the attributes “term” in Node Set #1 do not match any of the values of the “key” attributes in Node Set #2, output the “term” value(s) from Node Set #1. How would I do this?

Node Set #1

    <stuff term="foo" />
    <stuff term="bar" />
    <stuff term="test" />

Node Set #2

    <other key="time" />
    <other key="rack" />
    <other key="foo" />
    <other key="fast" />
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T05:49:07+00:00Added an answer on June 18, 2026 at 5:49 am

    Assuming your XML looks like this

    <record>
       <stuff>
          <stuff term="foo"/>
          <stuff term="bar"/>
          <stuff term="test"/>
       </stuff>
       <other>
          <other key="time"/>
          <other key="rack"/>
          <other key="foo"/>
          <other key="fast"/>
       </other>
    </record>
    

    You could set up a key to look up the other elements based on their key attribute

    <xsl:key name="other" match="other/*" use="@key"/>
    

    Then, to select your stuff elements for which there is no matching other element, you would use the key like so

    <xsl:apply-templates select="stuff/*[not(key('other', @term))]"/>
    

    Try the following XSLT

    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
       <xsl:output method="xml" indent="yes"/>
       <xsl:key name="other" match="other/*" use="@key"/>
    
       <xsl:template match="/*">
          <xsl:apply-templates select="stuff/*[not(key('other', @term))]"/>
       </xsl:template>
    
       <xsl:template match="@*|node()">
          <xsl:copy>
             <xsl:apply-templates select="@*|node()"/>
          </xsl:copy>
       </xsl:template>
    </xsl:stylesheet>
    

    When applied to the above XML, the following is output

    <stuff term="bar"></stuff>
    <stuff term="test"></stuff>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to have two different displays of a node teaser depending on
So I have two tables structured like so: CREATE TABLE #nodes(node int NOT NULL);
I have two getter members: Node* prev() { return prev_; } int value() {
I have two tables that look like this: node: NID Name 1 Chicago 2
I have the following two Node.js files: //test.js var hash=require('./hash'); var sys=require('sys'); hash.hash(asdf,function(param){ sys.puts(param);
I have two trees (paths), defined by a node like trait Node { def
EDIT: I also have access to ESXLT functions. I have two node sets of
I have a query that's supposed to do the following: Take two sets of
Say that I have two html nodes like this: <div class='node a'>one</div> <input class='node
I have two ordered lists next to each other. When I take a node

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.