欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp下替换非数字为空的正则

程序员文章站 2022-05-04 19:10:37
function replacestr(str) dim re set re=new regexp re.ignorecase=tr...
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