How to remove extended ascii characters (from ascii code 128 - 255)
Hi,
Is there a way to use regexp to remove extended ascii characters ranging from ascii code 128 - 255, like '��' from a CLOB string?
I tested following syntax. I thought this should remove '½', but not working.
select regexp_replace('�?' , chr(189), '') from dual;
Any advice on this is greatly appreciated.
Thanks,
James