VBS教程:对象-Match 对象
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 = RetStrEnd FunctionMsgBox(RegExpTest("is.", "IS1 is2 IS3 is4"))
相关推荐
SometimesYmc 2008-06-20
陌阡 2020-07-19
AHuqihua 2020-06-13
InJavaWeTrust 2020-06-04
jianxm 2020-03-28
心丨悦 2020-02-02
wangxiaoxue 2020-01-23
jyj00 2020-01-11
SDUTACM 2020-01-10
eroshn 2020-01-05
luofuIT成长记录 2019-12-30
心丨悦 2019-12-23
Darklovy 2019-12-06
YYDU 2019-11-17
cooldatabase 2019-11-17