...要求固定长度为20,不足的用空格补充,超过的截取前面20个字符,如何...
发布网友
发布时间:2024-04-02 13:33
我来回答
共2个回答
热心网友
时间:2024-08-02 22:59
function formatStr(str)
dim a,b
b=len(str)
if b<20 then
for i=b to 20
a=a&"&NBSP;" '把&NBSP;换成小写
next
formatStr=str&a
else
formatStr=left(str,20)
end if
end function
for j=1 to 25
s=s&"a"
response.write formatStr(s)
next
热心网友
时间:2024-08-02 23:05
<%if len(trim(rs("title")))>20 then
response.write left(trim(rs("title")),20)&"..."
else
response.write trim(rs("title"))
end if
%>
注:title就是你要输出的字段名
20后面的那个...是超出20位的话会显示:前面是20位字符加后面这个... 代表没读完,明白吗?