标签:字符串 with lob func global 去除 字符 vbs regex
1、去除字符串中的数字
Function aa(sr As Range)
Set reg = CreateObject("vbscript.regexp")
With reg
.Global = True
.Pattern = "\d+"
End With
aa = reg.Replace(sr, "")
End Function
标签:字符串 with lob func global 去除 字符 vbs regex
原文地址:http://www.cnblogs.com/susuye/p/7197857.html