asp regexp Regex詳解(1/3)

來源:互聯網
上載者:User

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"))

首頁 1 2 3 末頁

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.