Learn R Programming

crayon (version 1.5.3)

col_align: Align an ANSI colored string

Description

Align an ANSI colored string

Usage

col_align(
  text,
  width = getOption("width"),
  align = c("left", "center", "right"),
  type = "width"
)

Value

The aligned character vector.

Arguments

text

The character vector to align.

width

Width of the field to align in.

align

Whether to align "left", "center" or "right".

type

Passed on to col_nchar() and there to nchar()

See Also

Other ANSI string operations: col_nchar(), col_strsplit(), col_substr(), col_substring()

Examples

Run this code
col_align(red("foobar"), 20, "left")
col_align(red("foobar"), 20, "center")
col_align(red("foobar"), 20, "right")

Run the code above in your browser using DataLab