說明 Match 對象只能通過 RegExp 對象的 Execute 方法來創(chuàng)建,該方法實際上返回了 Match 對象的集合。所有的 Match 對象屬性都是只讀的。 在執(zhí)行正則表達式時,可能產(chǎn)生零個或多個 Match 對象。每個 Match 對象提供了被正則表達式搜索找到的字符串的訪問、字符串的長度,以及找到匹配的索引位置等。
下面的代碼說明了 Match 對象的用法:
Function RegExpTest(patrn, strng) Dim regEx, Match, Matches ' 建立變量。 Set regEx = New RegExp ' 建立正則表達式。 regEx.Pattern = patrn ' 設置模式。 regEx.IgnoreCase = True ' 設置是否區(qū)分大小寫。 regEx.Global = True ' 設置全局替換。 Set Matches = regEx.Execute(strng) ' 執(zhí)行搜索。 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