sen2r (version 1.2.1)

str_pad2: Pad a string.

Description

Vectorised over string, width and pad. This is an internal function doing the same thing of stringr::str_pad (except for parameters 'width' and 'length' which must be of length 1), but without depending on package stringi.

Usage

str_pad2(string, width, side = c("left", "right", "both"), pad = " ")

Arguments

string

A character vector.

width

Minimum width of padded strings.

side

Side on which padding character is added (left, right or both).

pad

Single padding character (default is a space).

Value

A character vector.

Examples

Run this code
# NOT RUN {
rbind(
  str_pad2("hadley", 30, "left"),
  str_pad2("hadley", 30, "right"),
  str_pad2("hadley", 30, "both")
)

# All arguments are vectorised except side
str_pad2(c("a", "abc", "abcdef"), 10)

# Longer strings are returned unchanged
str_pad2("hadley", 3)
# }

Run the code above in your browser using DataLab