首页 > 编程 > regex > 正文

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

2020-01-20 22:24:38
字体:
来源:转载
供稿:网友
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
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表