XQuery - replace 函数
replace 函数使用给定的字符串替换匹配的输入字符串。
语法
replace($input, $regex, $string)
输入参数
$input − 输入字符串。
$regex − 正则表达式。
$string - 用于替换原始字符串的字符串。
示例
XQuery 表达式
let $input := 'Chapter 1 ... Chapter 2' return ( replace($input, "Chapter (\d)", "Section $1.0"))
输出
Section 1.0 ... Section 2.0
验证结果
为了测试上述功能,请将 books.xqy(在 环境设置 章节中提到)的内容替换为上述 XQuery 表达式,然后执行 XQueryTester java 程序来验证结果。
xquery_regular_expressions.htm
广告