indent_string: Indent Strings

View source: R/tt_toString.R

indent_stringR Documentation

Indent Strings

Description

Used in rtables to indent row names for the ASCII output.

Usage

indent_string(x, indent = 0, incr = 2, including_newline = TRUE)

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

Value

x indented by left-padding with indent*incr white-spaces.

Examples

indent_string("a", 0)
indent_string("a", 1)
indent_string(letters[1:3], 0:2)
indent_string(paste0(letters[1:3], "\n", LETTERS[1:3]), 0:2)


rtables documentation built on Aug. 30, 2023, 5:07 p.m.