REGEXP_LIKE
Syntax
REGEXP_COUNT(str, pattern [, match_param])Overview
Parameter
Parameter
Description
Example
SELECT REGEXP_LIKE('Hello World', 'world', 'i');
regexp_like
-------------
t
(1 row)Last updated
REGEXP_COUNT(str, pattern [, match_param])SELECT REGEXP_LIKE('Hello World', 'world', 'i');
regexp_like
-------------
t
(1 row)Last updated