XQuery Tutorial on XQuery Regular Expressions

following is the list of commonly used regular expression functions provided by xquery

sr.no name & description
1

matches($input, $regex)

returns true if the input matches with the provided regular expression.

2

replace($input, $regex, $string)

replaces the matched input string with given string.

3

tokenize($input, $regex)

returns a sequence of items matching the regular expression.