XQuery Regular Expressions A list of regular expression functions provided by XQuery: Index Name Description 1) matches($input, $regex) It returns true if…
sequence
-
-
XQuery Functions XQuery 1.0, XPath 2.0, and XSLT 2.0 share the same functions library. A list of different types of XQuery functions:…
-
XQuery HTML Format XQuery can also be used to transform an XML document into an HTML page. Let’s take an example to…
-
XQuery If Then Else Statement The XQuery If Then Else statement is used to check the validity of the passing input values.…
-
XQuery Sequences XQuery sequences are used to specify an ordered collection of items. These items can be of similar or different types.…
-
String Functions There is a lot of string functions used in XQuery but here we are using the selected one. A list…
-
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…