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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T22:44:05+00:00 2026-05-24T22:44:05+00:00

If say I’ve got the following XML file: <title text=title1> <comment id=comment1> <data> this

  • 0

If say I’ve got the following XML file:

<title text=“title1">
    <comment id=“comment1">
        <data> this is part of comment one</data>
        <data> this is some more of comment one</data>
    </comment>
    <comment id=“comment2”>
        <data> this is part of comment two</data>
        <data> this is some more of comment two</data>
        <data> this is even some more of comment two</data>
    </comment>
</title>

And I’m given the following XPath query:

/title/comment/@id

What would be the best way to get the subtree to which the expression belongs.

So for instance, the above expression would return:

  • id="comment1"
  • id="comment2"

To which, comment1 belongs to subtree:

    <comment id="comment1">
        <data> this is part of comment one</data>
        <data> this is some more of comment one</data>
    </comment>

And, comment2 belongs to subtree:

    <comment id=“comment2">
        <data> this is part of comment two</data>
        <data> this is some more of comment two</data>
        <data> this is even some more of comment two</data>
    </comment>

The reason I want this is so that I can recursively make a call on the sub-tree where the Xpath expression is resolved to.

I am coding this in Java using DOM.

  • 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-24T22:44:07+00:00Added an answer on May 24, 2026 at 10:44 pm

    It sounds like the XPath expression is unknown until run time.
    And you want to obtain the parent of each node selected by the XPath expression… is that right? The <comment> element is the parent of each comment/@id attribute. Obtaining the <comment> element is equivalent to obtaining its subtree (descendants), because you can extract its descendants using further XPath expressions or DOM functions, or you can copy the <comment> element with its descendants.

    One way to answer your question then is to simply append “/..” to the end of the XPath expression. E.g.

    "/title/comment/@id"
    

    would become

    "/title/comment/@id/.."
    

    which is equivalent to @Dan’s answer, but can be easily derived from whatever the XPath expression may be.

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

Sidebar

Related Questions

Let´s say I´ve got the following xml string: <Item Name=\$Resources:myresource,somestring;\</Item> Now I want to
I got the following CSS rule in my page: a:link,a:active,a:visited{text-decoration:none;} for some reason It
lets say that I've got this XML: <items> <item name=thumb> <downloadStream>test1</downloadStream> <downloadStream>test2</downloadStream> <downloadStream>test3</downloadStream> </item>
Say you've got the following simple main.cpp file: #include <cstdlib> #include <iostream> #include <fstream>
If I have two domain names: altcognito.com and say I've got the other following
Let's say you got a file containing texts (from 1 to N) separated by
Say I've got this array: MyArray(0)=aaa MyArray(1)=bbb MyArray(2)=aaa Is there a .net function which
Say I've got a class like this: class Test { int x; SomeClass s;
Let say I got the following : DECLARE @ExcludedList VARCHAR(MAX) SET @ExcludedList = 3
Let say I got the following button : <asp:Button ID=btnSearch runat=server /> and the

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.