REGEXP_INSTR extends the regular INSTR string function by allowing searches of regular expressions.
The simplest form of this function is:
REGEXP_INSTR(source_string, pattern_to_find)
This part works like the INSTR function.
The general format for the REGEXP_INSTR function with all the options is:
SQL> SQL> SELECT REGEXP_INSTR('Mississippi', 'si', 1,2,0,'i') FROM dual; REGEXP_INSTR('MISSISSIPPI','SI',1,2,0,'I') ------------------------------------------ 7 SQL>