明天一定结贴的简单问题: 代替问题

时间:2022-06-02 16:09:11
原文是:
  We  are  an  American  owned  company,  our  core  business  is  boat  building,  our  side  business  is  trading  and  sourcing.  The  head  office  is  in  Maryland,  USA. 

我想把  都去掉,怎么样实现阿?希望大家赐教!

21 个解决方案

#1


手工清除咯
还没有发现要用asp去清除自己代码的,又没有病

#2


a="    "
a=replace(a," ","")

#3


replace(原文," ","")

#4


还是不行阿!!!
没有大侠来呢?

#5


用记事本开,然后使用查找替换呵。。嘻嘻

#6


路过...

#7


dim  a
a="  We  are  an  American  owned  company,  our  core  business  is  boat  building,  our  side  business  is  trading  and  sourcing.  The  head  office  is  in  Maryland,  USA."
a=replace(a," ","")
response.write a

#8


上面的方法可以的,看来楼主是别有用心呀

#9


上面的代码 没问题啊!!

#10


dim  a
a="  We  are  an  American  owned  company,  our  core  business  is  boat  building,  our  side  business  is  trading  and  sourcing.  The  head  office  is  in  Maryland,  USA."
a=replace(a," ","")
response.write a

是没有问题.

可是我变量值是从数据库里读出来的,
dim  a
a=rs("jieshao")
a=replace(a," ","")
response.write a

就不行了!!!!

求高手再帮忙!!!

#11


dim  a
a=Server.HtmlEncode(rs("jieshao"))
a=replace(a," ","")
response.write a

#12


 标记在网页本来就是显示为一个空格的.不知道你想达到什么目的.

a=rs("a")
a=Replace(a," "," ")
response.write a

以上测试通过.

#13


我的数据库里面的字段值有  标记,该标记读出来也一起出现
效果如下:
"  We  are  an  American  owned  company,  our  core  business  is  boat  building,  our  side  business  is  trading  and  sourcing.  The  head  office  is  in  Maryland,  USA.

我希望能实现

We are an American owned company, our core business is boat building, our side business is trading and sourcing. The head office is in Maryland, USA.

#14


楼上的变成:

    We  are  an  American  owned  company,  our  core  business  is  boat  building,  our  side  business  is  trading  and  sourcing.  The  head  office  is  in  Maryland,  USA.

反而多了空格的 符号!
如何相反阿?

#15


你这个信息是在IE上显示出来的~~
还是原IE查看代码中的~~老实交代

#16


是在IE上显示出来的,我的后台是 MSSQL 该字段的数据类型是varchar(1500)
运行出来的结果就是这样,不明白上面的朋友为什么说我有居心!!!

#17


他们以为我吃饱饭没有事做阿?  不过还是谢谢他们帮忙顶了一下!!

#18


a=rs("a")
a=Replace(a," "," ")
这样应当是可以做到的啊

#19


你应当使用的是changechr()输出吧?
你就直接response.write""&rs("a")就行,不要
a=changechr(rs("a"))

#20


也有可能你在写入数据库时使用了htmlencode()

#21


是的,我写入数据库的时候就是用htmlencode()

现在怎么样解决阿?!

#1


手工清除咯
还没有发现要用asp去清除自己代码的,又没有病

#2


a="    "
a=replace(a," ","")

#3


replace(原文," ","")

#4


还是不行阿!!!
没有大侠来呢?

#5


用记事本开,然后使用查找替换呵。。嘻嘻

#6


路过...

#7


dim  a
a="  We  are  an  American  owned  company,  our  core  business  is  boat  building,  our  side  business  is  trading  and  sourcing.  The  head  office  is  in  Maryland,  USA."
a=replace(a," ","")
response.write a

#8


上面的方法可以的,看来楼主是别有用心呀

#9


上面的代码 没问题啊!!

#10


dim  a
a="  We  are  an  American  owned  company,  our  core  business  is  boat  building,  our  side  business  is  trading  and  sourcing.  The  head  office  is  in  Maryland,  USA."
a=replace(a," ","")
response.write a

是没有问题.

可是我变量值是从数据库里读出来的,
dim  a
a=rs("jieshao")
a=replace(a," ","")
response.write a

就不行了!!!!

求高手再帮忙!!!

#11


dim  a
a=Server.HtmlEncode(rs("jieshao"))
a=replace(a," ","")
response.write a

#12


 标记在网页本来就是显示为一个空格的.不知道你想达到什么目的.

a=rs("a")
a=Replace(a," "," ")
response.write a

以上测试通过.

#13


我的数据库里面的字段值有  标记,该标记读出来也一起出现
效果如下:
"  We  are  an  American  owned  company,  our  core  business  is  boat  building,  our  side  business  is  trading  and  sourcing.  The  head  office  is  in  Maryland,  USA.

我希望能实现

We are an American owned company, our core business is boat building, our side business is trading and sourcing. The head office is in Maryland, USA.

#14


楼上的变成:

    We  are  an  American  owned  company,  our  core  business  is  boat  building,  our  side  business  is  trading  and  sourcing.  The  head  office  is  in  Maryland,  USA.

反而多了空格的 符号!
如何相反阿?

#15


你这个信息是在IE上显示出来的~~
还是原IE查看代码中的~~老实交代

#16


是在IE上显示出来的,我的后台是 MSSQL 该字段的数据类型是varchar(1500)
运行出来的结果就是这样,不明白上面的朋友为什么说我有居心!!!

#17


他们以为我吃饱饭没有事做阿?  不过还是谢谢他们帮忙顶了一下!!

#18


a=rs("a")
a=Replace(a," "," ")
这样应当是可以做到的啊

#19


你应当使用的是changechr()输出吧?
你就直接response.write""&rs("a")就行,不要
a=changechr(rs("a"))

#20


也有可能你在写入数据库时使用了htmlencode()

#21


是的,我写入数据库的时候就是用htmlencode()

现在怎么样解决阿?!