当前位置:雨林木风下载站 > 技术开发教程 > 详细页面

StripNonNumeric函数源程序

StripNonNumeric函数源程序

更新时间:2022-04-26 文章作者:未知 信息来源:网络 阅读次数:

<%
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
%>


温馨提示:喜欢本站的话,请收藏一下本站!

本类教程下载

系统下载排行