Method: Polars::StringExpr#strip_chars_start
- Defined in:
- lib/polars/string_expr.rb
#strip_chars_start(characters = nil) ⇒ Expr
Remove leading whitespace.
568 569 570 571 |
# File 'lib/polars/string_expr.rb', line 568 def strip_chars_start(characters = nil) characters = Utils.parse_into_expression(characters, str_as_lit: true) Utils.wrap_expr(_rbexpr.str_strip_chars_start(characters)) end |