码迷,mamicode.com
首页 > 其他好文 > 详细

判断文章中文字符数量

时间:2014-05-10 04:30:47      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:style   ext   color   c   a   rgb   

判断文章中文字符数量

dim WINNT_CHINESE 
WINNT_CHINESE = (len("论坛")=2)

function strLength(str) 
ON ERROR RESUME NEXT 
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

判断文章中文字符数量,布布扣,bubuko.com

判断文章中文字符数量

标签:style   ext   color   c   a   rgb   

原文地址:http://blog.csdn.net/u014440119/article/details/25423087

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!