polars.Expr.str.rjust#
- Expr.str.rjust(length: int, fill_char: str = ' ') Expr [source]#
Return the string right justified in a string of length
length
.Deprecated since version 0.19.12: This method has been renamed to
pad_start()
.- Parameters:
- length
Justify right to this length.
- fill_char
Fill with this ASCII character.