指引网

当前位置: 主页 > 编程开发 > ASP >

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

来源:网络 作者:佚名 点击: 时间:2017-08-23 21:46
[摘要] 指引教程为您提供asp 中英文字符长度检测判断函数等资源,欢迎您收藏本站,我们将为您提供最新的asp 中英文字符长度检测判断函数资源
<script>ec(2);</script>

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

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
          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

------分隔线----------------------------