REGEXP_SUBSTR
Returns the first substring from expr that matches the regular expression pattern. Returns NULL if no match is found.
REGEXP_SUBSTR(expr, pattern)
exprThe string to search in.
patternThe regular expression pattern to search for.
Examples
SELECT member_name,
REGEXP_SUBSTR(member_name, '(Andie|Quincey)')
FROM FamilyMembers;