I am able to remove all sepecial charaters as below:
SELECT REGEXP_REPLACE('91D5 ZBA DISCONNECTION https://mail.com/owa/#path=/mailÂ]*Debit Bank Ctry next Business Day is 06-Jan-2020', '[^0-9A-Za-z]', ' ')
FROM dual;
Output :
91D5 ZBA DISCONNECTION https mail tcs com owa path mail Debit Bank Ctry next Business Day is 06 Jan 2020
However if there is any single inverted comma inside my description as below if fails how do I escape single inverted comma sequence using REGEXP_REPLACE function:
SELECT REGEXP_REPLACE('91D5 ZBA DISCONNECTION https://mail.com/owa/#path=/''mailÂ]'*Debit Bank Ctry next Business Day is 06-Jan-2020', '[^0-9A-Za-z]', ' ')
FROM dual;