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

分行模块,自动识别英文和型号数[推荐精华]

时间:2014-05-09 22:22:08      阅读:320      评论:0      收藏:0      [点我收藏+]

标签:style   ext   color   c   int   get   


Function cuttextlen(intext, lens)
If Len(intext) <= lens Then
cuttextlen = intext
Else
tmptext = intext
GetTexts = ""
Do While Not Len(tmptext) <= lens

GetTexts = GetTexts + Left(tmptext, lens)
tmptext = Right(tmptext, Len(tmptext) - lens)
Do While (Asc(Left(tmptext, 1)) >= 65 And Asc(Left(tmptext, 1)) <= 90) Or (Asc(Left(tmptext, 1)) >= 97 And Asc(Left(tmptext, 1)) <= 122) Or (Asc(Left(tmptext, 1)) >= 45 And Asc(Left(tmptext, 1)) <= 57)
GetTexts = GetTexts + Left(tmptext, 1)
tmptext = Right(tmptext, Len(tmptext) - 1)
‘If Len(tmptext) <= lens Then Exit Do
Loop
GetTexts = GetTexts & "<br>"
Loop
cuttextlen = GetTexts & tmptext
End If
End Function
具体例子位置还是WWW.HIFI-CHINA.COM

分行模块,自动识别英文和型号数[推荐精华],布布扣,bubuko.com

分行模块,自动识别英文和型号数[推荐精华]

标签:style   ext   color   c   int   get   

原文地址:http://blog.csdn.net/tbmqzmavp/article/details/25390841

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