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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T18:33:10+00:00 2026-05-14T18:33:10+00:00

Is there a way to walk-through a key and output all the values it

  • 0

Is there a way to walk-through a key and output all the values it contains?

   <xsl:key name="kElement" match="Element/Element[@idref]" use="@idref" />

I though of it this way:

<xsl:for-each select="key('kElement', '.')">
  <li><xsl:value-of select="." /></li>
</xsl:for-each>

However, this does not work. I simply want to list all the values in a key for testing purposes.

The question is simply: how can this be done?

  • 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-05-14T18:33:11+00:00Added an answer on May 14, 2026 at 6:33 pm

    You can’t. That’s not what keys are for.

    You can loop through every element in a key using a single call to key() if and only if the key of each element is the same.

    If you need to loop over everything the key is defined over, you can use the expression in the match="..." attribute of your <key> element.

    So if you had a file like this:

    <root>
      <element name="Bill"/>
      <element name="Francis"/>
      <element name="Louis"/>
      <element name="Zoey"/>
    </root>
    

    And a key defined like this:

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

    You can loop through what the key uses by using the contents of its match attribute:

    <xsl:for-each select="element">
      <!-- stuff -->
    </xsl:for-each>
    

    Alternatively, if each element had something in common:

    <root>
      <element name="Bill" class="survivor"/>
      <element name="Francis" class="survivor"/>
      <element name="Louis" class="survivor"/>
      <element name="Zoey" class="survivor"/>
    </root>
    

    Then you could define your key like this:

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

    And iterate over all elements like this:

    <xsl:for-each select="key('survivors', 'survivor')">
      <!-- stuff -->
    </xsl:for-each>
    

    Because each element shares the value “survivor” for the class attribute.

    In your case, your key is

    <xsl:key name="kElement" match="Element/Element[@idref]" use="@idref" />
    

    So you can loop through everything it has like this:

    <xsl:for-each select="Element/Element[@idref]">
      <!-- stuff -->
    </xsl:for-each>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to find the name of the program that is running
Is there way in next piece of code to only get the first record?
is there way thats i can preselect an item when the page loads or
Is there a way to enforce constraint checking in MSSQL only when inserting new
Is there any way to check whether a file is locked without using a
Is there a way to hide radio buttons inside a RadioButtonList control programmatically?
Is there a way to find the number of files of a specific type
Is there a way to take over the Entity Framework class builder? I want
Is there any way to capture the MouseDown even from the .NET 2.0 TextBox
Is there a way to identify, from within a VM, that your code is

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.