Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks SQL
Databricks Runtime 10.4 LTS and above
Returns true if str
matches regex
. This function is a synonym for rlike operator.
str [NOT] regexp regex
str
: ASTRING
expression to be matched.regex
: ASTRING
expression with a matching pattern.
A BOOLEAN
.
The regex
string must be a Java regular expression.
When using literals, use raw-literal
(r
prefix) to avoid escape character pre-processing.
str NOT regexp ...
is equivalent to NOT(str regexp ...)
.
> SELECT r'%SystemDrive%\Users\John' rlike r'%SystemDrive%\\Users.*';
true
> SELECT r'%SystemDrive%\Users\John' rlike r'%SystemDrive%\Users.*';
Error: INVALID_PARAMETER_VALUE.PATTERN
> SELECT r'%SystemDrive%\Users\John' rlike '%SystemDrive%\\\\Users.*';
true