pyspark.sql.Column.endswith¶
- 
Column.endswith(other: Union[Column, LiteralType, DecimalLiteral, DateTimeLiteral]) → Column¶ String ends with. Returns a boolean
Columnbased on a string match.- Parameters
 - other
Columnor str string at end of line (do not use a regex $)
- other
 
Examples
>>> df.filter(df.name.endswith('ice')).collect() [Row(age=2, name='Alice')] >>> df.filter(df.name.endswith('ice$')).collect() []