asp下替换非数字为空的正则
更新时间:2007年12月28日 16:19:55 作者:
最近用到将字符串替换为空的函数,上网搜了一下这个简单的东西,网上没有,于是自己写个asp下替换字符串为空的正则,太简单了,见笑了
function replacestr(str)
dim re
set re=new regexp
re.ignorecase=true
re.global=true
re.pattern="\D"
str=re.replace(str,"")
replacestr=str
set re=nothing
end function
dim re
set re=new regexp
re.ignorecase=true
re.global=true
re.pattern="\D"
str=re.replace(str,"")
replacestr=str
set re=nothing
end function
相关文章
用正则表达式批量为a增加target=''''_blank''''新窗口打开的方法
今天在制作模板的时候,发现一些页面不是新窗口打开,有时候一些内容新窗口打开好些,本来打算手工替换的,发现了太多,还是正则比较方便一些2013-12-12
最新评论