Hello Guru, I have some email which has special character in it.
Example :TESTXÃO@mail.com When I try to use the below syntax its coming as:
select REGEXP_REPLACE('TESTXÃO@mail.com','[^0-9A-Za-z]', '') from dual
Output showing as:
TESTXOmailcom
It should show as :TESTXO@mailcom (overcoming the special character)
Please advise