snowflake.snowpark.Column.rlike¶
- Column.rlike(pattern: Union[Column, str], parameters: Optional[Union[Column, str]] = None) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.42.0/src/snowflake/snowpark/column.py#L1141-L1179)¶
- Returns true if this Column matches the specified regular expression. - Parameters:
- pattern – A - Columnor a- strthat indicates the pattern. A- strwill be interpreted as a literal value instead of a column name.
 - For details, see the Snowflake documentation on regular expressions.