Visual Basic Scripting Edition | 語言參考 |
Match 對(duì)象提供了對(duì)正則表達(dá)式匹配的只讀屬性的訪問。 說明Match 對(duì)象只能通過 RegExp 對(duì)象的 Execute 方法來創(chuàng)建,該方法實(shí)際上返回了 Match 對(duì)象的集合。所有的 Match 對(duì)象屬性都是只讀的。 在執(zhí)行正則表達(dá)式時(shí),可能產(chǎn)生零個(gè)或多個(gè) Match 對(duì)象。每個(gè) Match 對(duì)象提供了被正則表達(dá)式搜索找到的字符串的訪問、字符串的長度,以及找到匹配的索引位置等。 下面的代碼說明了 Match 對(duì)象的用法: Function RegExpTest(patrn, strng)
Dim regEx, Match, Matches ' 建立變量。
Set regEx =New RegExp ' 建立正則表達(dá)式。
regEx.Pattern =patrn ' 設(shè)置模式。
regEx.IgnoreCase =True ' 設(shè)置是否區(qū)分大小寫。
regEx.Global =True ' 設(shè)置全局替換。
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 MsgBox(RegExpTest("is.", "IS1 is2 IS3 is4"))
屬性FirstIndex 屬性 | Length 屬性 | Value 屬性 要求版本 5 請(qǐng)參閱Matches 集合 | RegExp 對(duì)象 | SubMatches 集合 返回首頁 |