snowflake.snowpark.Column.rlike¶
- Column.rlike(pattern: Union[Column, str]) Column [source]¶
Returns true if this Column matches the specified regular expression.
- Parameters:
pattern – A
Column
or astr
that indicates the pattern. Astr
will be interpreted as a literal value instead of a column name.
For details, see the Snowflake documentation on regular expressions.