XQuery - matches 函数



如果输入与提供的正则表达式匹配,matches 函数将返回 true;否则返回 false。

语法

matches($input, $regex)

输入参数

  • $input − 输入字符串。

  • $regex − 正则表达式。

示例

XQuery 表达式

let $input := 'TutorialsPoint Simply Easy Learning'
return (matches($input, 'Hello') =  true(),
matches($input, 'T.* S.* E.* L.*') =  true()
)

输出

false
true

验证结果

为了测试上述功能,用上面的 XQuery 表达式替换 books.xqy(在 环境设置 章节中提及)的内容,然后执行 XQueryTester java 程序来验证结果。

打印
xquery_regular_expressions.htm
广告