首页 > 网站 > 建站经验 > 正文

asp 判断,数字是否整形

2019-11-02 15:30:49
字体:
来源:转载
供稿:网友

function isInteger(para)
       on error resume next
       dim str
       dim l,i
       if isNUll(para) then
          isInteger=false
          exit function
       End if
       str=cstr(para)
       if trim(str)="" then
          isInteger=false
          exit function
       End if
       l=len(str)
       for i=1 to l
           if mid(str,i,1)>"9" or mid(str,i,1)<"0" then
              isInteger=false
              exit function
&

奇米影院[www.aikan.tv/special/miqiyingyuan/]
nbsp;          End if
       next
       isInteger=true
       if err.number<>0 then err.clear
End function

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