excel正则表达式
例题:<ahref=><imgsrc=></a>excel使用正则表达式去掉<ahref=></a>但中间部分的<imgsrc=>要留下...
例题:<a href=><img src=></a>excel使用正则表达式去掉<a href=></a>但中间部分的<img src=>要留下
展开
展开全部
用vba处理么?还是别的程序?
Sub extract()
' 这种使用方式需要"工具""引用"
' 引用Microsoft VBScript Regular Expressions 5.5类库
Dim reg As New RegExp
With reg
.Global = True
.IgnoreCase = True
.Pattern = "<img src=.*?>"
End With
测试:
Dim mc As MatchCollection
Dim m As Match
Set mc = reg.Execute("123aaaaa987uiiui999")
For Each m In mc
MsgBox m.Value + 1
Next
End Sub
Sub extract()
' 这种使用方式需要"工具""引用"
' 引用Microsoft VBScript Regular Expressions 5.5类库
Dim reg As New RegExp
With reg
.Global = True
.IgnoreCase = True
.Pattern = "<img src=.*?>"
End With
测试:
Dim mc As MatchCollection
Dim m As Match
Set mc = reg.Execute("123aaaaa987uiiui999")
For Each m In mc
MsgBox m.Value + 1
Next
End Sub
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询