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

  • Home
  • SEARCH
  • 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 4542784
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T15:26:22+00:00 2026-05-21T15:26:22+00:00

I have XML which looks like this: <A></A> <A></A> <A> <a/> <a/> </A> As

  • 0

I have XML which looks like this:

<A></A>
<A></A>
<A>
    <a/>
    <a/>
</A>

As you can see it has two levels <A> and <a>.

I wrote XSL tranform that generates index number on every <A> element and it works:

<xsl:template match "A">
<xsl:element name="Person">
<xsl:attribute name="id">
<xsl:number count="A"/>
</xsl:attribute>
</xsl:element>
</xsl>

Output:

<Person id="1"/>
<Person id="2"/>
<Person id="3"/>

But how to write xsl:number to generate the same number at <a> level (at ???)?

<xsl:template match "A">
<xsl:element name="Person">
<xsl:attribute name="id">
<xsl:number count="A"/>
<xsl:apply-templates select="a"/>
</xsl:attribute>
</xsl:element>
</xsl>
<xsl:template match "a">
<xsl:element name="Item">
<xsl:attribute name="id">
<xsl:number count="???"/>
</xsl:attribute>
</xsl:element>
</xsl>

Expected output (I want the same id for <Person> and <Item>):

<Person id="1"/>
<Person id="2"/>
<Person id="3">
   <Item id="3"/>
   <Item id="3"/>
</Person>

I know this must be some simple XPATH expression, but I really got stucked on this.

  • 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-21T15:26:23+00:00Added an answer on May 21, 2026 at 3:26 pm

    In response to your request to do it without passing a variable, see below.
    The drawback is that <xsl:number> can’t be used directly in an Attribute Value Template (as @Martin used the $id variable), so generating the id attribute becomes verbose.

    <xsl:template match="A">
      <Person>
        <xsl:attribute name="id">
          <xsl:number count="A" />
        </xsl:attribute>
        <xsl:apply-templates select="a" />
      </Person>
    </xsl:template>
    
    <xsl:template match="a">
      <Item>
        <xsl:attribute name="id"> <!-- I would name it personRef or something -->
          <xsl:number count="A" />
        </xsl:attribute>
      </Item>
    </xsl:template>
    

    (Untested.)
    The key here is using select=".." on xsl:number in the "a" template. Edit: It turns out that the select=".." is not actually necessary. Since the context node a does not match the count pattern A, it starts from the nearest ancestor that does match it. What a web of useful defaults this instruction has!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an XML file, which I open in F# like this: let Bookmarks(xmlFile:string)
I have a xml which is max 3 levels deep. Now by using C#
I have an xml in which i have stored some html under comments like
I have a custom XML file format which can contain blocks of code within
I have an XML feed (which I don't control) and I am trying to
Good morning. I have an XML file which contains lists of warning and errors
We have a PageRoles xml file which contains the page path and the user
I have an XML string in which Val.responseText gives me <NewDataSet> <Table> <FieldID>21</FieldID> <TableName>F003v001</TableName>
I have an xml file from which I am extracting html using LINQ to
We have a Perl program to validate XML which is invoked from a Java

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.