您的位置:首页 > 编程语言 > VB

VB/VBA 正则表达式的使用方法

2017-08-30 17:17 417 查看
VBA正则表达式使用
Sub RegularTest()
Dim s As String
s = "12asd34"
Dim myRegExp As Object
Dim mMatches As Object
Dim mMatch As Object
sumValueInText = 0
Set mRegExp = CreateObject("Vbscript.Regexp")
With mRegExp
.Global = True
.IgnoreCase = True
.Pattern = "([0-9])?[.]([0-9])+|([0-9])+"
Set mMatches = .Execute(s)
For Each mMatch In mMatches
sumValueInText = sumValueInText + CDbl(mMatch.Value)

Next
End With
MsgBox sumValueInText

Set mRegExp = Nothing
Set mMatches = Nothing
End Sub
正则表达式规则VBA
http://www.51vba.com/show.aspx?page=1&id=4106&cid=0
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: