<scriptlanguage="JavaScript"> var str = "有多长我有多长我有多长我有多长我有多长"; if (str.length <= 5) { document.write(str); } else { document.write(str.substring(0, 5) + "…"); } </script>
VBS:这个我也不了解,感觉和 js 类似
1 2 3 4 5 6 7 8 9 10 11 12
function phxLeft(s,u) tempLeft=left(s,u) Set regEx = New RegExp regEx.Pattern="$[$^\x00-\xff$]$" regEx.IgnoreCase = True regEx.Global = True Set Matches = regEx.Execute(tempLeft) n=u-round(Matches.Count/2) phxLeft=left(s,n) endfunction msgbox phxLeft("有多长我有多长我有多长我有多长我有多长",5) msgbox phxLeft("abcdefgggsadabsnuh",10)
asp:这个有问题,中英文混排就糟了,目前还没想到解决办法
1 2 3 4 5 6 7 8
text=rs("title") '将数据库字段值赋到某变量上 i=20 '定义固定大小 if len(text)>i then '如果文本长度大于给定的值 text=left(text,i) '则提取前段的i位的字符串 response.write (text&”…”) else response.write (text) end if