snowflake.snowpark.Column.endswith¶
- Column.endswith(other: Union[Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.42.0/src/snowflake/snowpark/column.py#L1206-L1230)¶
- Returns true if this Column ends with another string. - Parameters:
- other – A - Columnor a- strthat is used to check if this column ends with it. A- strwill be interpreted as a literal value instead of a column name.