REGEXP_MATCHES
Returns true when the specified regular expression matches values in a column. Otherwise, returns false.
Syntax
REGEXP_MATCHES(input string, regex string) → boolean
input: The expression to test.
regex: The Perl-compatible regular expression (PCRE) to use for the test.
Examples
REGEXP_MATCHES example
REGEXP_MATCHES example
Usage Notes
This function is identical to the function REGEXP_LIKE
.
Last updated