发布网友 发布时间:2022-04-23 17:08
共2个回答
热心网友 时间:2023-10-23 05:26
试试这个函数,可以截取适当的字符,需要注意的是,这里的参数ll指的是汉字的长度,一个汉字相当于两个英文字符。
你可以把这个函数放在文件前面,然后在输出时引用就可以了
<%=aCut(rssl("Title"),15)%>
<%
Function aCut(str, ll)
l = Len(str) '获取字符串长度
If l <= ll Then '如果长度小于等于规定长度
aCut = str
Else
aCut = ""
t = 0
For i = 1 To l
s = Mid(str, i, 1)
c = Asc(s)
If c < 0 Then c = c + 65536
If c > 255 Then
t = t + 1
Else
t = t + 0.5
End If
aCut = aCut & s
if t >= ll then exit for
Next
End If
End Function
'举例
a = aCut("中华人民共和国234123412342131234A", 10)
response.write a
%>
热心网友 时间:2023-10-23 05:27
<%=rssl("Title")%>
改
<%=Left(rssl("Title"),10)%>
10就是你需要的字符数,你自己可以修改为你需要的数字