snowflake.snowpark.functions.endswith¶
- snowflake.snowpark.functions.endswith(col: ColumnOrName, str: ColumnOrName) Column [source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.3.0/src/snowflake/snowpark/functions.py#L2082-L2094)¶
Returns true if col ends with str.
Example:
>>> df = session.create_dataframe(["apple", "banana", "peach"], schema=["a"]) >>> df.select(endswith(df["a"], lit("ana")).alias("endswith")).collect() [Row(ENDSWITH=False), Row(ENDSWITH=True), Row(ENDSWITH=False)]