26 ottobre 2013

How-to: Remove special characters in string - Oracle

Oracle Replace Function:
REGEXP_REPLACE(,'[^[:alnum:]'' '']', NULL)

Example:

SELECT
REGEXP_REPLACE('##$$$Franesco Paganelli ALèE''&&!!__!','[^[:alnum:]'' '']', NULL)
FROM dual;

--Output
Franesco Paganelli ALèE'


Nessun commento: