ASP如何限制标题的输出字数? 5

dowhilenotobjRS.eofhtml=html&"<li><ahref=""/blog/web/"&objRS("log_ID")&".shtml""title... do while not objRS.eof
html = html & "<li><a href=""/blog/web/" & objRS("log_ID") & ".shtml"" title=""" & objRS("log_Title") &""" target=""_blank""><span class=""article-date"">["& Month(FormatDateTime(objRS("log_PostTime"),2)) & "/" & Day(FormatDateTime(objRS("log_PostTime"),2)) &"]</span>" & objRS("log_Title") & "</a></li>"

如何设定其中的("log_Title") 输出的字节数?
展开
 我来答
冰灬痕
2012-04-26
知道答主
回答量:6
采纳率:0%
帮助的人:8.7万
展开全部
gotTopic(objRS("log_Title"), 20)

'英文当孝旁好成一个字符,汉字巧铅当成两个字符处理
function gotTopic(ByVal str,ByVal strlen)
if str="" then
gotTopic=""
exit function
end if
dim l,t,c, i,strTemp
l=len(str)
t=0
strTemp=str
strlen=Clng(strLen)
for i=1 to l
c=Abs(Asc(Mid(str,i,1)))
if c>255 then
t=t+2
else
t=t+1
end if
if t>=strlen then
strTemp=left(str,i)
exit for
end if
next
if strTemp<>str then
strTemp=strTemp & "..."启丛
end if
gotTopic=strTemp
end function
追问
需要这么复杂吗?还要特定定义个函数来控制啊?
追答
最好这样, 因为如果你用mid函数,那么len的时候,都会当成一个字符。
这里是将英文作为1,汉字作为2,也就是半角1,全角2,这样显示出来的时候,页面的美观得多。因为显示基本上都是设定的等长的。
另外,长度超出的,还会有个“…”显示哦。
itlam
2012-04-26 · 超过23用户采纳过TA的回答
知道答主
回答量:76
采纳率:0%
帮助的人:54万
展开全部
用left(objRS("log_Title"),10) 10是你想要的字数,随便你怎么改,如果需要后链改茄面加省略号的就写个函数

Function leftstr(str,strlen)
if trim(str) = "" or trim(str) = null then
leftstr=""
exit function
end if
dim l,t,c, i
str=replace(replace(replace(replace(str," "棚察," "),""",chr(34)),"歼颤>",">"),"<","<")
l=len(str)
t=0
for i=1 to l
c=Abs(Asc(Mid(str,i,1)))
if c>255 then
t=t+2
else
t=t+1
end if
if t>=strlen then
leftstr=left(str,i) & "..."
exit for
else
leftstr=str
end if
next
<","<")
End Function
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
千鸥4Q
2012-05-04 · 超过32用户采纳过TA的回答
知道答主
回答量:227
采纳率:0%
帮助的人:123万
展开全部
left(objRS("如绝拍log_Title"),x) x是你想要截宏源取的字渣羡符数,汉子与字母字符数有些区别,需要实际测试
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式