Skip to content
Adglob Infosystem Pvt Ltd
  • About Us
  • B2B and B2C Database
  • Bulk Email Solution
  • Contact Us
  • Corporate Email Service
  • Database Portfolio
  • Database Process Flow
  • Database Services
  • FAQs
  • Lead Generation
  • Managed Email Campaign Solution
  • Our Clients
  • Privacy Policy
  • Product Blog
  • Request Sample for Free Database
  • Terms & Conditions
  • Web Scrapping
  • XQuery

    1. Home>
    2. XQuery>
    3. Page 2

    XQuery – String Functions

    • Post author:k A
    • Post published:August 20, 2021
    • Post category:XQuery
    • Post comments:2 Comments

    The following table lists the commonly used string manipulation functions provided by XQuery. Sr.NoName & Description1string-length Function Returns the length of the string.2string-concat Function Returns the concatenated string as output.3string-join…

    Continue ReadingXQuery – String Functions

    XQuery – string-join Function

    • Post author:k A
    • Post published:August 20, 2021
    • Post category:XQuery
    • Post comments:3 Comments

    The string-join function is used to concatenate various sequences separated by a given delimiter. Syntax string-join($sequence as xs:string*, $delimiter as xs:string) as xs:string Input Parameters $sequence − sequence of zero or more strings.$delimiter −…

    Continue ReadingXQuery – string-join Function

    XQuery – concat Function

    • Post author:k A
    • Post published:August 20, 2021
    • Post category:XQuery
    • Post comments:1 Comment

    The concat function is used to concatenate various strings. Syntax concat($input as xs:anyAtomicType?) as xs:string Input Parameters $input − one or more inputs separated by comma. Example XQuery Expression let $bookTitle := "Learn…

    Continue ReadingXQuery – concat Function

    XQuery – string-length Function

    • Post author:k A
    • Post published:August 20, 2021
    • Post category:XQuery
    • Post comments:1 Comment

    The string-length function is used to get the length of a string. Syntax string-length($string as xs:string) as xs:integer Input Parameters $string − provided string. Example XQuery Expression let $bookTitle := "Learn XQuery in…

    Continue ReadingXQuery – string-length Function

    XQuery – position Function

    • Post author:k A
    • Post published:August 20, 2021
    • Post category:XQuery
    • Post comments:1 Comment

    The position function is used in FLOWR expression to get the position of an item in a sequence. Syntax position() Example XQuery Expression let $items := (1,2,3,4,5,6) return <result> <items> { for…

    Continue ReadingXQuery – position Function

    XQuery – last Function

    • Post author:k A
    • Post published:August 20, 2021
    • Post category:XQuery
    • Post comments:1 Comment

    The last function is used to get the last item in the given sequence. Syntax last() Example XQuery Expression let $items := (1,2,3,4,5,6) let $lastElement := $items[last()] return <result> <lastElement>{$lastElement}</lastElement> </result> Output…

    Continue ReadingXQuery – last Function

    XQuery – index-of Function

    • Post author:k A
    • Post published:August 20, 2021
    • Post category:XQuery
    • Post comments:1 Comment

    The index-of function is used to track items in the given sequence. It returns integers to indicate the availability of items in a given sequence. Syntax index-of($seq as anyAtomicType()*, $target as anyAtomicType())…

    Continue ReadingXQuery – index-of Function

    XQuery – reverse Function

    • Post author:k A
    • Post published:August 20, 2021
    • Post category:XQuery
    • Post comments:1 Comment

    The reverse function is used to reverse the given sequence. This function returns the modified sequence but the original sequence is not altered. Syntax reverse($seq as item()*) Input Parameters $seq − provided sequence.…

    Continue ReadingXQuery – reverse Function

    XQuery – remove Function

    • Post author:k A
    • Post published:August 20, 2021
    • Post category:XQuery
    • Post comments:1 Comment

    The remove function is used to remove an item in a given sequence from any position. This function returns the modified sequence but the original sequence is not altered. Syntax remove($seq as…

    Continue ReadingXQuery – remove Function

    XQuery – insert-before Function

    • Post author:k A
    • Post published:August 20, 2021
    • Post category:XQuery
    • Post comments:1 Comment

    The insert-before function is used to insert an item in a given sequence at any position. This function returns the modified sequence but the original sequence is not altered. Syntax insert-before($seq as…

    Continue ReadingXQuery – insert-before Function
    • Go to the previous page
    • 1
    • 2
    • 3
    • 4
    • Go to the next page
    Copyright - OceanWP Theme by OceanWP