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

,asp 中英文字符长度检测判断函数

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

function strLength(str)
       ON ERROR RESUME NEXT
       dim WINNT_CHINESE
       WINNT_CHINESE    = (len("论坛")=2)
       if WINNT_CHINESE then
          dim l,t,c
          dim i
          l=len(str)
          t=l
       &

格瓦拉电影网[www.aikan.tv/special/gewaladianyingwang/]
nbsp;  for i=1 to l
             c=asc(mid(str,i,1))
             if c<0 then c=c+65536
             if c>255 then
                t=t+1
             End if
          next
          strLength=t
       else
          strLength=len(str)
       End if
       if err.number<>0 then err.clear
End function

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