ASP怎么截取字符串。就截取前40个汉字

ASP怎么截取字符串。就截取前40个汉字???... ASP怎么截取字符串。就截取前40个汉字??? 展开
 我来答
晚安1534
2014-06-24 · TA获得超过242个赞
知道答主
回答量:126
采纳率:0%
帮助的人:54.6万
展开全部
<% 'txt是字符内容,length是要截取多少个字符 Function GetStringLength(txt,length) dim i i=1 y=0 txt=trim(txt) for i=1 to len(txt) j=mid(txt,i,1) if asc(j)>=0 and asc(j)<=127 then '汉字外的其他符号,如:!@#,数字,大小写英文字母 y=y+0.5 else '汉字 y=y+1 end if if -int(-y) >= length then '截取长度 txt = left(txt,i) exit for end if next response.write txt End Function %> 调用方法: <%call GetStringLength(txt,length)%>
分0006
2014-06-25 · 超过68用户采纳过TA的回答
知道答主
回答量:121
采纳率:0%
帮助的人:167万
展开全部
最简单的: <% if len(rs("title")) > 40 then '判断字符串的长度 response.Write left(rs("title"),40)&" ..." else response.write rs("title") end if %>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式