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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T04:49:00+00:00 2026-06-13T04:49:00+00:00

In an xquery expression, I have obtained a set of values within a for-expression,

  • 0

In an xquery expression, I have obtained a set of values within a for-expression, and one value is in a separate variable.

Now, I want to subtract the single value from first value of the list, and then subtract consecutive members of the list from each other– and in the resulting set of difference values, I want to obtain the min/max values…

The query upto now looks like this–

let $value1:= 1998
let $rows_citations:= 
         $doc//div[@id="patent_citations"]
                     /div[@id="patent_citations_v"]
                          /table[@class="rel_patent"]
                             /tbody/tr[1]
                                      /following-sibling::tr
for $pos in $rows_citations/position()
let $date2_c := customfn:dateconverter1($rows_citations[$pos]/td[3])

Now the subtraction I want is between first value of date2_c and value 1, and after that between consecutive members of date2_c… And from the resulting list I want the min/max values… How do I go about doing this?

I am esp. confused about creating a new list variable that stores all the differences, esp. when we are already inside a for loop, and are iterating over each value of a list (via variable date2_c)

  • 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-13T04:49:02+00:00Added an answer on June 13, 2026 at 4:49 am

    I. This XQuery 3.0 query (which is also a pure XPath 3.0 expression):

    let $pVal := 1,
        $vList := (2,4,7,11,16),
        $vList2 := ($pVal, subsequence($vList, 1, count($vList)-1)),
        $vSubtactedList :=
                map-pairs(function($m as xs:integer, $n as xs:integer) as xs:integer
                            {
                             $m - $n
                            },
                            $vList,
                            $vList2
                          )
        return
          (min($vSubtactedList), max($vSubtactedList))
    

    produces the wanted result the minimum and maximum values from the list of subtractions:

    1 5
    

    II. XQuery 1.0 solution:

    let $pVal := 1,
        $vList := (2,4,7,11,16),
        $vList2 := ($pVal, subsequence($vList, 1, count($vList)-1)),
        $vSubtactedList :=
                    for $i in 1 to count($vList)
                     return
                        $vList[$i] - $vList2[$i]
    
     return
        (min($vSubtactedList), max($vSubtactedList))
    

    This again produces the same correct result:

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

Sidebar

Related Questions

I have the following xquery expression for returning the title of a particular CD
I have the following xml document, I need an xquery expression to know how
I'm trying to learn xQuery coming from a php background, I have this expression
I´m starting using xquery and I want to know how to get the values
I have some XML data representing a mathematical expression tree and want to convert
having the following XML sample document, I need to issue an XPath/XQuery expression to
In xquery, is there any difference between single and double quotes?
I want to use the Saxon-B XQuery class in my ASP.Net website. But my
To mimic an auto-increment value in XQuery Update, the following works fine, assuming <root
In XQuery, (foo, bar) = (foo, bar) yields the value true . That seems

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.