pad(x, padding = max(nchar(as.character(x))), sort = TRUE, type = "detect")
TRUE
the outcome is
sorted."detect"
,
"numeric"
, "character"
, "d"
or
"s"
. If numeric zeros are padded. If character
spaces are padded. The detect
attempts to
determine if x is numeric (d) or not (s).Returns a character vector every element padded with 0/spaces.
A convenience wrapper for sprintf
that pads the front end of strings with spaces or 0s.
Useful for creating multiple uniform directories that
will maintain correct order.
[1] "01" "02" "03" "04" "05" "06" "07" "08" "09" "10"[1] "10" "04" "05" "08" "02" "07" "09" "03" "01" "06"[1] " 1" " 2" " 3" " 4" " 5" " 6" " 7" " 8" " 9" "10"[1] " 2" "10" " 7" " 4" " 1" " 9" " 5" " 8" " 6" " 3"[1] " 1" " 2" " 3" " 4" " 5" " 6" " 7" " 8" " 9" " 10"
sprintf