通过本文主要向大家介绍了asp判断是否为数字,asp 字符转数字,asp字符串转数字,asp 格式化数字,asp 判断是否数字等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
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 </div>
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 </div>