asp match正则函数使用Matchs实例
程序员文章站
2022-05-19 11:17:07
说明 match 对象只能通过 ...
说明
match 对象只能通过 regexp 对象的 execute 方法来创建,该方法实际上返回了 match 对象的集合。所有的 match 对象属性都是只读的。
在执行正则表达式时,可能产生零个或多个 match 对象。每个 match 对象提供了被正则表达式搜索找到的字符串的访问、字符串的长度,以及找到匹配的索引位置等。
下面的代码说明了 match 对象的用法:
function regexptest(patrn, strng)
dim regex, match, matches ' 建立变量。
set regex = new regexp ' 建立正则表达式。
regex.pattern = patrn ' 设置模式。
regex.ignorecase = true ' 设置是否区分大小写。
regex.global = true ' 设置全局替换。
set matches = regex.execute(strng) ' 执行搜索。
for each match in matches ' 遍历 matches 集合。
retstr = retstr & "match " & i & " found at position "
retstr = retstr & match.firstindex & ". match value is "'
retstr = retstr & match.value & "'." & vbcrlf
next
regexptest = retstr
end function
msgbox(regexptest("is.", "is1 is2 is3 is4"))
上一篇: 正则表达式口诀_学习正则的朋友值得一看
推荐阅读
-
PHP函数preg_match_all正则表达式的基本使用详细解析
-
awk正则表达式和内置函数的使用方法实例详解
-
asp match正则函数使用Matchs实例
-
ASP用户注册检测函数 (使用正则表达式)
-
PHP preg match正则表达式函数的操作实例
-
js正则函数match、exec、test、search、replace、split使用介绍集合
-
awk正则表达式和内置函数的使用方法实例详解
-
PHP函数preg_match_all正则表达式的基本使用详细解析
-
php preg_match正则表达式函数实例,phppregmatch函数
-
PowerShell函数使用正则表达式验证输入参数实例