Regular Expressions Oracle PLSQL

SQL>
SQL>
SQL> -- Find the 's' and match case.
SQL>
SQL> SELECT REGEXP_INSTR('Sam told a story','s',1,1,0,'c') position FROM dual;
  POSITION
----------
        12
SQL>