Column.
endswith
String ends with. Returns a boolean Column based on a string match.
Column
string at end of line (do not use a regex $)
Examples
>>> df.filter(df.name.endswith('ice')).collect() [Row(age=2, name='Alice')] >>> df.filter(df.name.endswith('ice$')).collect() []