oracle数据库去除换行、空格、回车字符

oracle数据库去除换行、空格、回车字符,第1张

去除换行

update zhzl_address t set t.add_administration_num=replace(t.add_administration_num,chr(10),'')

去掉回车

update zhzl_address t set t.add_administration_num=replace(t.add_administration_num,chr(13),'')

去掉空格

update zhzl_address t set t.add_administration_num=trim(t.add_administration_num)

是存数据库时用的

假如取的数据放在content中,

content=Replace(content,chr(10),"<br>")

content=Replace(content,chr(13)&chr(10),"<p>")

content=Replace(content,chr(10)&chr(13),"</p>")

content=Replace(content,"

","&nbsp")

&nbsp代表空格。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6779101.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-28
下一篇 2023-03-28

发表评论

登录后才能评论

评论列表(0条)

保存