VBS教程:方法-Test 方法

來源:互聯網
上載者:User

Test 方法

對指定的字串執行一個Regex搜尋,並返回一個 Boolean 值指示是否找到匹配的模式。

object.Test(string)

參數

object

必選項。總是一個 RegExp 對象的名稱。

string

必選項。要執行Regex搜尋的文本字串。

說明

Regex搜尋的實際模式是通過RegExp對象的Pattern屬性來設定的。RegExp.Global屬性對Test方法沒有影響。

如果找到了匹配的模式,Test方法返回True;否則返回False。

下面的代碼說明了Test 方法的用法。

Function RegExpTest(patrn, strng)  Dim regEx, retVal            ' 建立變數。  Set regEx = New RegExp         ' 建立Regex。  regEx.Pattern = patrn         ' 設定模式。  regEx.IgnoreCase = False         ' 設定是否區分大小寫。  retVal = regEx.Test(strng)         ' 執行搜尋測試。  If retVal Then    RegExpTest = "找到一個或多個匹配。"  Else    RegExpTest = "未找到匹配。"  End IfEnd FunctionMsgBox(RegExpTest("is.", "IS1 is2 IS3 is4"))

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.