Used in rtables to indent row names for the ASCII output.
Arguments
- x
a character vector
- indent
a vector of length
length(x)
with non-negative integers- incr
non-negative integer: number of spaces per indent level
- including_newline
boolean: should newlines also be indented
Examples
indent_string("a", 0)
#> [1] "a"
indent_string("a", 1)
#> [1] " a"
indent_string(letters[1:3], 0:2)
#> [1] "a" " b" " c"
indent_string(paste0(letters[1:3], "\n", LETTERS[1:3]), 0:2)
#> [1] "a\nA" " b\n B" " c\n C"