Learn R Programming

pystr (version 2.0.0)

pystr_rjust: Right justify a string.

Description

Return str right justified in a string of length width. Padding is done using the specified fillchar (default is an ASCII space). The original string is returned if width is less than or equal to nchar(str).

Usage

pystr_rjust(str, width, fillchar = " ")

Arguments

str
A character vector.
width
An integer.
fillchar
A character string.

Value

A character vector.

References

https://docs.python.org/3/library/stdtypes.html#str.rjust

See Also

pystr_ljust

Examples

Run this code
pystr_rjust("right", 10)
pystr_rjust("right", 10, "*")

Run the code above in your browser using DataLab