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

snowflake.snowpark.Column.startswithΒΆ

Column.startswith(other: Union[Column, str]) β†’ Column[source]ΒΆ

Returns true if this Column starts with another string.

Parameters:

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