Method: Polars::StringExpr#strip_chars_end
- Defined in:
- lib/polars/string_expr.rb
#strip_chars_end(characters = nil) ⇒ Expr
Remove trailing whitespace.
594 595 596 597 |
# File 'lib/polars/string_expr.rb', line 594 def strip_chars_end(characters = nil) characters = Utils.parse_into_expression(characters, str_as_lit: true) Utils.wrap_expr(_rbexpr.str_strip_chars_end(characters)) end |