XPath Predicate Predicate specifies XPath expressions written in square bracket. It is used to restrict the selected nodes in a node set…
xpath
-
-
XQuery Regular Expressions A list of regular expression functions provided by XQuery: Index Name Description 1) matches($input, $regex) It returns true if…
-
XQuery Add XQuery Add is used for adding elements, attributes, HTML elements and text in the results from the input documents. Let’s…
-
XQuery string-join() Function The XQuery string-join function is used to concatenate various sequences separated by a given delimiter. string-join($sequence as xs:string*, $delimiter…
-
XQuery concat() Function The XQuery concat function is used to concatenate various strings. concat($input as xs:anyAtomicType?) as xs:string Parameter explanation: $input –…
-
XQuery string-length() Function The XQuery string-length function is used to get the length of a string. string-length($string as xs:string) as xs:integer Parameter…
-
XQuery current-date() Function The XQuery current date function is used to retrieve the current date. current-date() XQuery current-date() Example Use the following…
-
XQuery Syntax XQuery elements, attributes, and variables must be valid XML names and follow case sensitivity. XQuery Syntax Rules XQuery follows case-sensitivity.…
-
XQuery current-dateTime() Function The XQuery current-date time() function is used to return the current date and time. current-dateTime() XQuery current-dateTime() Example Use…
-
Time and Date Function There are a lot of time and date function supported in XQuery but here, we are providing the…