首页 > 学院 > 开发设计 > 正文

StripNonNumeric函数源程序

2019-11-18 21:41:48
字体:
来源:转载
供稿:网友
<%
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
%>



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表