Method: Polars::StringExpr#ends_with
- Defined in:
- lib/polars/string_expr.rb
permalink #ends_with(sub) ⇒ Expr
Check if string values end with a substring.
731 732 733 734 |
# File 'lib/polars/string_expr.rb', line 731 def ends_with(sub) sub = Utils.parse_into_expression(sub, str_as_lit: true) Utils.wrap_expr(_rbexpr.str_ends_with(sub)) end |