asp下替换非数字为空的正则
(编辑:jimmy 日期: 2024/11/15 浏览:3 次 )
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
下一篇:java 正则表达式基础,实例学习资料收集大全 原创