polars.internals.expr.ExprStringNameSpace.rjust¶
- ExprStringNameSpace.rjust(width: int, fillchar: str = ' ') polars.internals.expr.Expr ¶
Return the string right justified in a string of length width. Padding is done using the specified
fillchar
, The original string is returned ifwidth
is less than or equal tolen(s)
.- Parameters
- width
Justify right to this length.
- fillchar
Fill with this ASCII character.