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 8913165
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T04:23:28+00:00 2026-06-15T04:23:28+00:00

I have the following xml <root> <element id=’1′>blah</element> <element id=’2′>blah</element> <element id=’3′>blah</element> </root> A

  • 0

I have the following xml

  <root>
      <element id='1'>blah</element>
      <element id='2'>blah</element>
      <element id='3'>blah</element>
  </root>

A parm passed into my xsl that is..

  <Ids>
      <id>1</id>
      <id>2</id>
      <id>3</id> 
  </Ids>

In my xsl I want to loop through both the parm and xml to match any elements with id attribute that equals one of the parm id values.This is dynamic and I will not know the values of either they will be uuids.

I’ve tried this but I the of element id is not found

  <xsl:for-each  select="/$Ids/id">
 <xsl:variable name="driverId" select="."/>
     <xsl:for-each select="/root/element[@id=$driverId]">
          //do something
     </xsl:for-each>
   </xsl:for-each>

If message out the value of element id before the first for each I can see all the values but not with in the loop.. Is this possible in the way I’m thinking about doing it.

Still not working, I’ve changed the to

same results.

In the xsl if I put outside the parm for-each

  <test><xsl:for-each select="/root/element/@id"></test>

I get

  <test>1 2 3</test>

IF put

  <test><xsl:for-each select="/root/element/@id"></test>

inside

   <xsl:for-each  select="$Ids/id">

I get nothing returned???

  • 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-15T04:23:29+00:00Added an answer on June 15, 2026 at 4:23 am

    Define a key

    <xsl:key name="id" match="element" use="@id"/>
    

    then you also need a reference to the primary input document with a global xsl:variable i.e.

    <xsl:variable name="main-root" select="/"/>
    

    once you have that use

    <xsl:for-each select="$Ids//id">
      <xsl:for-each select="key('id', ., $main-root)">...</xsl:for-each>
    </xsl:for-each>
    

    Without a key you need

    <xsl:for-each select="$Ids//id">
      <xsl:for-each select="$main-root/root/element[@id = current()]">...</xsl:for-each>
    </xsl:for-each>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following xml and want to insert additional xml into it: <root>
I have following xml which same child element (Filed) and I want to get
I have the following code, that inserts the processing instructions before root element: Document
I have the following xml file and want to parse it into an .aspx
I have the following XML document: <root someAttribute=someValue /> Now I want to add
I have an XML document with following structure: root element DataModel can have children
I have the following xml: <Root> <Item> <CityCode>ALV</CityCode> <AirportCode>ALV</AirportCode> <CityName>ANDORRA LA VELLA</CityName> <AirportName>Andorra La
I have the following XML Schema: <Root> <EventSet> <Event> <id> //random id </id> <time>
I have the following XML <ns0:Root xmlns:ns0=http://Map_Sample.Input_Schema> <Number1> </Number1> <Number2>11</Number2> <Number3>12</Number3> </ns0:Root> In this
I have the following XML: <root> <section> <item name=a> <uuid>1</uuid> </item> </section> <section> <item

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.