码迷,mamicode.com
首页 > 编程语言 > 详细

[VBA]利用正则表达式创建函数处理字符串

时间:2017-07-18 00:08:10      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:字符串   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

 

[VBA]利用正则表达式创建函数处理字符串

标签:字符串   with   lob   func   global   去除   字符   vbs   regex   

原文地址:http://www.cnblogs.com/susuye/p/7197857.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!