asp

位置:IT落伍者 >> asp >> 浏览文章

asp 判断数字是否整形


发布日期:2023年06月28日
 
asp 判断数字是否整形

function isInteger(para)
on error resume next
dim str
dim li
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= to l
if mid(stri)>"" or mid(stri)<"" then
isInteger=false
exit function
End if
next
isInteger=true
if errnumber<> then errclear
End function

上一篇:asp Select Case 语法与 select case 实例

下一篇:asp 实现远程登陆代码