我想從使用XQuery的字符串中提取日期。從字符串中提取匹配正則表達式的字符串
let $string := "This string has a yymmdd date like 151123 in it."
(: I need the date bit -> 151123 :)
let $regex := "[0-9]{2}[0-1][0-9][0-3][0-9]"
使用replace()
和tokenize()
我可以得到比匹配的字符串其他的一切。 functx:get-matches()
函數看起來像它可能會做的伎倆,但我不能使用它。