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

StripNonNumeric函数源程序

程序员文章站 2022-07-07 19:38:23
<%function stripnonnumeric(strinput)    dim ipos, snew, itemp ...
<%
function stripnonnumeric(strinput)
    dim ipos, snew, itemp
    strinput = trim(strinput)
    if strinput <> "" then
        ipos = 1
        itemp = len(strinput)
        while itemp >= ipos
            if isnumeric(mid(strinput,ipos,1)) = true then
                snew = snew & mid(strinput,ipos,1)
            end if
            ipos = ipos + 1
        wend
    else
        snew = ""
    end if
    stripnonnumeric = snew
end function
%>