asp 非数字 正则 asp下替换非数字为空的正则
人气:0想了解asp下替换非数字为空的正则的相关内容吗,在本文为您仔细讲解asp 非数字 正则的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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
加载全部内容