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

ASP实例:检测整数和长整数的函数

程序员文章站 2022-05-11 18:39:43
检测整数和长整数的asp函数 <%检测字符串是否是整数function is_int(a_str)  &...

检测整数和长整数的asp函数

<%
检测字符串是否是整数
function is_int(a_str)
    if not isnumeric(a_str) or len(a_str) > 5 then
        is_int = false 
        exit function 
    elseif len(a_str) < 5 then
        is_int = true 
        exit function 
    end if 
    if cint(left(a_str , 4)) > 3276 then
        is_int = false
        exit function
    elseif cint(left(a_str , 4)) = 3276 and cint(right(a_str , 1)) > 7 then
        is_int = false
        exit function
    else
        is_int = true
        exit function
    end if 
end function

检测是否是长整数
function is_lng(a_str)
    if not isnumeric(a_str) or len(a_str) > 10 then
        is_lng = false
        exit function 
    elseif len(a_str) < 10 then
        is_lng = true 
        exit function 
    end if 
    if clng(left(a_str , 9)) > 214748367 then
        is_lng = false
        exit function
    elseif clng(left(a_str , 9)) = 214748367 and clng(right(a_str , 1)) > 7 then
        is_lng = false
        exit function
    else
        is_lng = true
        exit function
    end if 
end function
%>


推荐阅读