snowflake.snowpark.functions.startswith¶
- snowflake.snowpark.functions.startswith(col: Union[Column, str], str: Union[Column, str]) Column [source]¶
Returns true if col starts with str.
- Example::
>>> df = session.create_dataframe( ... [["abc", "a"], ["abc", "s"]], ... schema=["S", "P"], ... ).select(startswith(col("S"), col("P"))) >>> df.collect() [Row(STARTSWITH("S", "P")=True), Row(STARTSWITH("S", "P")=False)]