最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
对一篇很长的文章做到完美的分页输出
时间:2022-06-30 11:55:10 编辑:袖梨 来源:一聚教程网
很简单,在要截断的地方附近找下面的符号:
;’”?。!;'".!
如果后面存在
或
就分页。主要是要研究文章的格式。
<%
if Request.ServerVariables("Content_Length") > 0 then
content = Request.Form("textarea1")
PageLength = 1000 '每页字数
Clength = Len(content)
PageCount = Int(Clength/PageLength) + 1 '计算页数
dim PageArray
redim PageArray(PageCount)
Seperator = Array(chr(13),chr(10),"。","!","?",";",",","”","’") '分隔符
PageArray(0) = 0
Pos = 0
for j=0 to ubound(Seperator)
Pos = instr(PageArray(I)+900,content,Seperator(j)) 'PageArray(I)+900 附近位置是100字,1-999可调
while Pos > 0 and Pos < (I+1)*PageLength and Pos > I*PageLength
PageArray(I) = Pos
Pos = instr(Pos+PageLength,content,Seperator(j))
wend
if PageArray(I) > 0 then
Response.Write "0:I| "&PageArray(I)&"
"&j&":j"&Seperator(j)&"
"
j = j + ubound(Seperator) + 1
end if
next
for I=1 to PageCount-1
PageArray(I) = 0
Pos = 0
for j=0 to ubound(Seperator)
Pos = instr(PageArray(I-1)+950,content,Seperator(j))
while Pos > 0 and Pos < (I+1)*PageLength and Pos > I*PageLength
PageArray(I) = Pos
Pos = instr(Pos+PageLength,content,Seperator(j))
wend
if PageArray(I) > 0 then
Response.Write I&":I| "&PageArray(I)&"
"&j&":j"&Seperator(j)&"
"
j = j + ubound(Seperator) + 1
end if
next
next
output = mid(content,1,PageArray(0))
output = replace(output,chr(13),"
")
Response.Write "
第1段
"
Response.Write output
for I=1 to PageCount-2
output = mid(content,PageArray(I-1)+1,PageArray(I)-PageArray(I-1))
output = replace(output,chr(13),"
")
相关文章
- 我的休闲时光黑金璀璨套间怎么获得-黑金璀璨套间获取方法 09-18
- 桃源深处有人家颐养四时活动怎么玩-颐养四时主题活动玩法介绍 09-18
- 原神闲话家常任务怎么做-原神闲话家常任务怎么完成 09-18
- 幻兽帕鲁异构格里芬在哪-幻兽帕鲁异构格里芬位置在哪里 09-18
- 王者荣耀白起苍鳞隐世皮肤多少钱-白起苍鳞隐世皮肤售价介绍 09-18
- 和平精英2025新春版本福利有什么-2025新春版本福利汇总 09-18