Pad string to desired width
strpad(string, width, where = "right", padding = " ",
autoelide = FALSE)
String to pad
Desired width of padded string
Padding can be inserted to the right or left of <string>. Default to 'right'.
A single character with with the padding space is filled. Defaults to blank ' ' yielding invisible padding.
If TRUE, <string> is elided if it is wider than <width>. The position of eliding follows <where>. Defaults to FALSE.
Padded string of length <width>.