如果标题过长,因为页面布局的限制,只能列表10个字符,这个函数会帮你实现的
复制代码 代码如下:
'截取字符串 strvalue(标题,字数)
function strvalue(str,lennum)
dim p_num
dim i
if strlen(str)=lennum then
strvalue=str
else
p_num=0
x=0
do while not p_num > lennum-2
x=x+1
if asc(mid(str,x,1))0 then
p_num=int(p_num) + 2
else
p_num=int(p_num) + 1
end if
strvalue=left(trim(str),x)"…"
loop
end if
end function
function strlen(str)
dim page_len
page_len=0
strlen=0
if trim(str)>"" then
page_len=len(trim(str))
for xx=1 to page_len
if asc(mid(str,xx,1))0 then
strlen=int(strlen) + 2
else
strlen=int(strlen) + 1
end if
next
end if
end function
使用方法:
复制代码 代码如下:
%=strvalue("准确的编程语言,可正确对代码语法着色,输入简单几个字的代码片段说明",10)%>
以上所述就是本文的全部内容了,希望大家能够喜欢。
您可能感兴趣的文章:- ASP 时间函数及如何获取服务器时间的写法
- Asp Split函数之使用多个分割符的方法
- asp与js的类型转换函数介绍
- asp中的Rnd 函数
- ASP转换格林威治时间函数DateDiff()应用
- ASP移动文件函数movefile权限不足的替代方法
- ASP中实现的URLEncode、URLDecode自定义函数
- asp实现获取MSSQL数据库表指定条件行数的函数
- asp中实现清除html的函数
- ASP实现强制图片下载函数
- ASP函数大全解析