powered by
Wrap a string with RTL-embedding Unicode characters
str_rtl(..., multiline = FALSE)
A character vector.
One or more character vectors, ideally of length 1.
Whether to split the input strings to separate lines. Defaults to FALSE.
FALSE
# Notice how the `.` prints to the right, while in RTL it should print to the left cat("a.") # `str_rtl()` fixes this: str_rtl("a.") |> cat() str_rtl("a.", "b.", multiline = TRUE) |> cat()
Run the code above in your browser using DataLab