regexp 對象的屬性
◎ global屬性
global屬性設定或返回一個 boolean 值,該值指明在整個搜尋字串時模式是全部匹配還是只匹配第一個。
文法
object.global [= true | false ]
object 參數總是 regexp 對象。如果搜尋應用於整個字串,global 屬性的值為 true,否則其值為 false。預設的設定為 true。
function regexptest(patrn, strng)
dim regex, match, matches ' 建立變數。
set regex = new regexp ' 建立Regex。
regex.pattern = patrn ' 設定模式。
regex.ignorecase = true ' 設定是否區分字元大小寫。
regex.global = true ' 設定全域可用性。
set matches = regex.execute(strng) ' 執行搜尋。
for each match in matches ' 遍曆匹配集合。
retstr = retstr & "match 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"))
function regexptest(patrn, strng)
dim regex ' 建立變數。
set regex = new regexp ' 建立規範運算式。
regex.pattern = patrn ' 設定模式。
regex.ignorecase = true ' 設定是否區分字母的大小寫。
regex.global = true ' 設定全程性質。
regexptest = regex.execute(strng) ' 執行搜尋。
end function
msgbox(regexptest("is.", "is1 is2 is3 is4"))
ignorecase屬性
ignorecase屬性設定或返回一個boolean值,指明模式搜尋是否區分大小寫。
文法
object.ignorecase [= true | false ]
object 參數總是一個 regexp 對象。如果搜尋是區分大小寫,則 ignorecase 屬性為 false;否則為 true。預設值為 true。
ignorecase 屬性的用法(改變賦予 ignorecase 屬性的值以觀察其效果):
function regexptest(patrn, strng)
dim regex ' 建立變數。
set regex = new regexp ' 建立Regex。
regex.pattern = patrn ' 設定模式。
regex.ignorecase = true ' 設定是否區分大小寫。
regexptest = regex.execute(strng) ' 執行搜尋。
end function
msgbox(regexptest("is.", "is1 is2 is3 is4"))