Skip to main content

XQuery tokenize Function

XQuery tokenize Function

The tokenize function returns a sequence of items matching the regular expression.

Syntax

tokenize($input, $regex)

Input Parameters

  • $input is the input string.
  • $regex is the regular expression.

Example

XQuery Expression
let $input := 'Chapter 1 ... Chapter 2... Section 1.1'
return ( tokenize($input, 'C'))
Output
hapter 1 ... 
hapter 2... Section 1.1