snowflake.snowpark.functions.endswith¶ snowflake.snowpark.functions.endswith(col: ColumnOrName, str: ColumnOrName) → Column[source]¶ Returns true if col ends with str. Example: CopyExpand>>> 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)] Show lessSee moreScroll to top