Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正規表現を使うとどうなる?これにより、char 160 または 243 を何も置き換えずに、問題のある文字が削除されます。
SQL> select regexp_replace('abc' || chr(160) || chr(243) || 'def', '(' || chr(160) || '|' || chr(243) || ')', '') from dual; REGEXP ------ abcdef SQL>