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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T12:14:05+00:00 2026-05-11T12:14:05+00:00

I have an XML document I generate on the fly, and I need a

  • 0

I have an XML document I generate on the fly, and I need a function to eliminate any duplicate nodes from it.

My function looks like:

declare function local:start2() {     let $data := local:scan_books()     return <books>{$data}</books> }; 

Sample output is:

<books>   <book>     <title>XML in 24 hours</title>     <author>Some Guy</author>     </book>   <book>     <title>XML in 24 hours</title>     <author>Some Guy</author>     </book> </books> 

I want just the one entry in my books root tag, and there are other tags, like say pamphlet in there too that need to have duplicates removed. Any ideas?


Updated following comments. By unique nodes, I mean remove multiple occurrences of nodes that have the exact same content and structure.

  • 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. 2026-05-11T12:14:06+00:00Added an answer on May 11, 2026 at 12:14 pm

    A simpler and more direct one-liner XPath solution:

    Just use the following XPath expression:

      /*/book         [index-of(/*/book/title,                    title                  )                   [1]         ] 

    When applied, for example, on the following XML document:

    <books>     <book>         <title>XML in 24 hours</title>         <author>Some Guy</author>     </book>     <book>         <title>Food in Seattle</title>         <author>Some Guy2</author>     </book>     <book>         <title>XML in 24 hours</title>         <author>Some Guy</author>     </book>     <book>         <title>Food in Seattle</title>         <author>Some Guy2</author>     </book>     <book>         <title>How to solve XPAth Problems</title>         <author>Me</author>     </book> </books> 

    the above XPath expression selects correctly the following nodes:

    <book>     <title>XML in 24 hours</title>     <author>Some Guy</author> </book> <book>     <title>Food in Seattle</title>     <author>Some Guy2</author> </book> <book>     <title>How to solve XPAth Problems</title>     <author>Me</author> </book> 

    The explanation is simple: For every book, select only one of its occurences — such that its index in all-books is the same as the first index of its title in all-titles.

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

Sidebar

Ask A Question

Stats

  • Questions 106k
  • Answers 106k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I'm not exactly sure what the proper query notation for… May 11, 2026 at 8:51 pm
  • Editorial Team
    Editorial Team added an answer Simply yourForm.TopMost = true; May 11, 2026 at 8:51 pm
  • Editorial Team
    Editorial Team added an answer Not much when you look at where the data is… May 11, 2026 at 8:51 pm

Related Questions

I've got a problem with a SOAP Web Reference that was generated by Visual
I'm designing a system which is receiving data from a number of partners in
I've got an XML file that contains a list of questions. I'd like to
I work a lot with external Web Services, and I need to create an

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.