Method: Polars::StringExpr#pad_end
- Defined in:
- lib/polars/string_expr.rb
#pad_end(length, fill_char = " ") ⇒ Expr Also known as: ljust
Pad the end of the string until it reaches the given length.
622 623 624 |
# File 'lib/polars/string_expr.rb', line 622 def pad_end(length, fill_char = " ") Utils.wrap_expr(_rbexpr.str_pad_end(length, fill_char)) end |