XPath Predicate Predicate specifies XPath expressions written in square bracket. It is used to restrict the selected nodes in a node set…
XML Tutorial
XSLT <xsl:import> Element The XSLT <xsl:import> element is used to import the content of one stylesheet to another stylesheet. The importing stylesheet…
XQuery Regular Expressions A list of regular expression functions provided by XQuery: Index Name Description 1) matches($input, $regex) It returns true if…
XPath Wildcard A list of XPath wildcards which are used with the XPath expressions. Index Wildcard Expression 1) * It is used…
String Functions There is a lot of string functions used in XQuery but here we are using the selected one. A list…
XSLT <xsl:value-of> Element The XSLT <xsl:value-of> element is used to extract the value of selected node. It puts the value of selected…
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…