
Last chance! 50% off unlimited learning
Sale ends in
Vectorised over string
, width
and pad
.
str_pad(string, width, side = c("left", "right", "both"), pad = " ")
A character vector.
A character vector.
Minimum width of padded strings.
Side on which padding character is added (left, right or both).
Single padding character (default is a space).
str_trim()
to remove whitespace;
str_trunc()
to decrease the maximum width of a string.
rbind(
str_pad("hadley", 30, "left"),
str_pad("hadley", 30, "right"),
str_pad("hadley", 30, "both")
)
# All arguments are vectorised except side
str_pad(c("a", "abc", "abcdef"), 10)
str_pad("a", c(5, 10, 20))
str_pad("a", 10, pad = c("-", "_", " "))
# Longer strings are returned unchanged
str_pad("hadley", 3)
Run the code above in your browser using DataLab