检查是否含有特殊字符

'**************************检查是否含有特殊字符************************
function checkStr2(str)

for i=1 to len(str)
  if (asc(mid(str,i,1))>=48 and asc(mid(str,i,1))=<57) or (asc(mid(str,i,1))>=65 and asc(mid(str,i,1))=<90) or (asc(mid(str,i,1))>=97 and asc(mid(str,i,1))=<122) then
    checkStr2=true
  else
    checkStr2=false
    exit for
  end if
next

end function

如果str里含有特殊字符则返回结果为true

    相关文章

评论

发表新评论

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