centerText: Center Text Strings

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/centerText.R

Description

Function to center text strings for display on the text console by prepending the necessary number of spaces to each element.

Usage

1
centerText(x, width = getOption("width"))

Arguments

x

Character vector containing text strings to be centered.

width

Desired display width. Defaults to the R display width given by getOption("width").

Details

Each element will be centered individually by prepending the necessary number of spaces to center the text in the specified display width assuming a fixed width font.

Value

Vector of character strings.

Author(s)

Gregory R. Warnes greg@warnes.net

See Also

strwrap

Examples

1
2
3
4
5
6
7
8
9
cat(centerText("One Line Test"), "\n\n")

mText <-c("This", "is an example",
          " of a multiline text    ",
          "with ",
          "          leading",
          " and trailing         ",
          "spaces.")
cat("\n", centerText(mText), "\n", sep="\n")

gdata documentation built on May 2, 2019, 5:49 p.m.