snowflake.snowpark.Column.regexp¶
- Column.regexp(pattern: Union[Column, str]) Column [source] (https://github.com/snowflakedb/snowpark-python/blob/v1.16.0/src/snowflake/snowpark/column.py#L565-L583)¶
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.