Hi all,
I am new to regular expressions, but would like to use it for the simple "search & replace" function:
This is OK:
SELECT REGEXP_REPLACE('([*\/{$test])', 'test', 'aaa', 1, 0, 'i') regexp_replace FROM DUAL;
This does not work:
SELECT REGEXP_REPLACE('([*\/{$test])', '[', '?', 1, 0, 'i') regexp_replace FROM DUAL; => ORA-12726
How should be the pattern to support all possible replace requests?
It should working like the "Search & Replace" functionality from notepad or other programms.
Thanks