日期:2014-05-17 浏览次数:21335 次
--第一个用半角空白,第二个替换用全角空白 select replace(replace('f b',' '),' ') from dual REPLACE(REPLACE('FB',''),'') ---------------------------- fb
------解决方案--------------------
--用正则表达式也可以,就可以考虑全角半角了 select regexp_replace('a b','[[:space:]]') from dual REGEXP_REPLACE('AB','[[:SPACE: ------------------------------ ab