检查是否是手机号码

'**************************检查是否是手机号码************************
function checkMobile(no)
 if no ="" or isnull(no) = true then
    checkMobile=false
    exit function
 end if
 if len(no) <>11 then
        checkMobile=false
     exit function
 end if
 if left(no,2) = 13  or left(no,2) = 14  or left(no,2) = 15 or left(no,2) = 18 then
       checkMobile=true
 else
       checkMobile=false
       exit function
 end if
end function

    相关文章

评论

发表新评论

此内容将保密,不会被其他人看见。
点击刷新验证码
  • 可用的 UBB 标签:
  • 留言最长字数:1000。