Skip to contents

Add padding to string

Usage

add_padding(
  d,
  length = NULL,
  after = FALSE,
  pad = "0",
  lead = NULL,
  tail = NULL
)

Arguments

d

vector of strings or numbers

length

final string length

after

if padding should be added after as opposed to default before

pad

padding string of length 1

lead

leading string for all. Number or character vector. Cycled.

tail

tailing string for all. Number or character vector. Cycled.

Value

vector or character strings of same length.

Examples

add_padding(sample(1:200,5),tail="AA",lead=c(2,3,"e"))
#> [1] "2173AA" "3151AA" "e063AA" "2102AA" "3111AA"