如何测试字符串的长度?
如何测试字符串的长度?
发布时间:2016-12-29 来源:查字典编辑
摘要:如何测试字符串的长度?FunctionCheckStringLength(txt)txt=trim(txt)x=len(txt)y=0for...

如何测试字符串的长度?

Function CheckStringLength(txt)

txt=trim(txt)

x = len(txt)

y = 0

for ii = 1 to x

if asc(mid(txt,ii,1)) < 0 or asc(mid(txt,ii,1)) >255 then

' 如果是中文.

y = y + 2

else

y = y + 1

end if

next

CheckStringLength = y

End Function

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新编程10000问学习
热门编程10000问学习
编程开发子分类