snowflake.snowpark.Column.endswith¶
- Column.endswith(other: Union[Column, str]) Column [source] (https://github.com/snowflakedb/snowpark-python/blob/v1.26.0/snowpark-python/src/snowflake/snowpark/column.py#L1122-L1146)¶
Returns true if this Column ends with another string.
- Parameters:
other – A
Column
or astr
that is used to check if this column ends with it. Astr
will be interpreted as a literal value instead of a column name.