REGEXP_REPLACE
789950Aug 23 2010 — edited Aug 23 2010Hello, I am attempting to use regular expressions to remove non printable characters. Any ideas as to why the following example is removing characters that are printable? Thanks
SELECT
REGEXP_REPLACE('123-abc-ABC &*%$#', '[^\x20-\x7E]', '')
FROM DUAL