Skip to main content

endswith (Column)

Check if a string column ends with a substring.

Syntax

Python
endswith(other)

Parameters

Parameter

Type

Description

other

str or Column

String or Column containing the suffix to check

Parameter

Type

Description

other

str or Column

String or Column containing the suffix to check

Returns

Column (boolean)

Examples

Python
df = spark.createDataFrame(
[(2, "Alice"), (5, "Bob")], ["age", "name"])
df.filter(df.name.endswith('ice')).collect()
Output
# [Row(age=2, name='Alice')]
Python
df.filter(df.name.endswith('ice$')).collect()
Output
# []