ASP怎么把读出的换行符替换掉,请大侠救命

2024-12-17 10:57:32
推荐回答(5个)
回答1:

content=rs("content")
content=replace(content,"
","") '换行符替换为空

回答2:

for i=0 to 4

replaceweb(i)=Replace(replaceweb(i),chr(13)," ")
replaceweb(i)=Replace(replaceweb(i),chr(10),"

")
replaceweb(i)=Replace(replaceweb(i),CHR(32)," ")
replaceweb(i)="

"& replaceweb(i)&"

"

FSOFileRead=Replace(FSOFileRead,"$HTMLWEB["&i&"]",replaceweb(i))

next

回答3:

如果转换成

的话,那每行就成一个段落了。
用str=Replace(str,"\r\n","");来去除换行符,换行符一般是\r\n

回答4:

楼上的,你说的可以用么?那个不是js中的吗?asp一般不是默认vbs吗?难道在vbs中也可以使用\r\n??
--------------------
楼主,楼上的说的有道理,成了段落就更不好排版了,不如换成
的好
str=replace(str,vbcrlf,"
")

回答5:

ascii码chr(13),chr(32)替换就行了。