str_rtl {rtlr} | R Documentation |
Wrap a string with RTL-embedding Unicode characters
Description
Wrap a string with RTL-embedding Unicode characters
Usage
str_rtl(..., multiline = FALSE)
Arguments
... |
One or more character vectors, ideally of length 1. |
multiline |
Whether to split the input strings to separate lines. Defaults to |
Value
A character vector.
Examples
# 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()
[Package rtlr version 0.1.0 Index]