VBA 正则表达式

VBScript程序员参考手册 第3版

 

 

Sub 正则表达式()
    Dim regExp As Object
    Dim x As String
    x = "some long string with http://www.wrox.com buried in it."
    Set regExp = CreateObject("vbscript.regexp")
    regExp.Pattern = "\d"
    regExp.IgnoreCase = True
  

    If regExp.test(x) Then
        MsgBox "Yes"
    Else
        MsgBox "No"
    End If
    'x = regExp.Replace(x, "#")
End Sub

 

上一篇:在elementUI中使用 el-autocomplete 实现带搜索建议的下拉框


下一篇:HTTP请求与响应处理