手机
当前位置:查字典教程网 >编程开发 >ASP教程 >asp 中英文字符长度检测判断函数
asp 中英文字符长度检测判断函数
摘要:functionstrLength(str)ONERRORRESUMENEXTdimWINNT_CHINESEWINNT_CHINESE=(...

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

【asp 中英文字符长度检测判断函数】相关文章:

asp中的Rnd 函数

ASP FSO文件处理函数大全

asp html转换字符程序

sp判断中西混字符串长度

asp中正则表达式过滤html代码函数

字符批量替换程序asp服务器版

asp 字符串连接数据库方法

asp中去除内容HTML标签的三个function函数

asp 中常用的文件处理函数

遍历目录以及目录下文件的函数

精品推荐
分类导航