You are viewing documentation about an older version (1.16.0). View latest version

snowflake.snowpark.Column.endswith

Column.endswith(other: Union[Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.16.0/src/snowflake/snowpark/column.py#L595-L603)

Returns true if this Column ends with another string.

Parameters:

other – A Column or a str that is used to check if this column ends with it. A str will be interpreted as a literal value instead of a column name.

Language: English