REGEXP_INSTR
Return the index of a regex match. This function finds the starting position of the first substring that matches the given pattern.
Syntax
REGEXP_INSTR(subject, pattern)Examples
SELECT REGEXP_INSTR('abc','b');
-> 2
SELECT REGEXP_INSTR('abc','x');
-> 0
SELECT REGEXP_INSTR('BJÖRN','N');
-> 5Last updated
Was this helpful?

