标签:ascii from 情况 notepad upd rom color bsp 符号
回车换行符
chr(10)是换行符,
chr(13)是回车,
增加换行符
select ‘ update ‘ || table_name || ‘ set VALID_STATE =‘‘0A‘‘;‘||chr(13)||‘ commit;‘ from user_tables
删除换行符
select id,replace(content,to_char(chr(13))||to_char(chr(10)),‘_r_n‘) from fact_content order by content;
oracle中去掉文本中的换行符、回车符、制表符小结
制表符 chr(9)
换行符 chr(10)
回车符 chr(13)
二、嵌套使用repalce,注意每次只能提交一个符号,如先回车再换行
select REPLACE(gg, chr(10), ‘‘) from dual
要注意chr(13) | | chr(10) 此类结合使用的情况比较多,
回车换行在notepad中是比较好看点的,所以要考虑此种情况
select translate(string,chr(13)||chr(10),‘,‘) from dual;
三、对于字符大对象的符号处理
对于clob字段中的符号处理,先to_char然后一样的处理
select to_char(vcl),replace(to_char(vcl),chr(10),‘[]‘) from test_1;
标签:ascii from 情况 notepad upd rom color bsp 符号
原文地址:http://www.cnblogs.com/alsf/p/7955895.html