StrPad | R Documentation |
StrPad
will fill a string x with defined characters to fit a given length.
StrPad(x, width = NULL, pad = " ", adj = "left")
x |
a vector of strings to be padded. |
width |
resulting width of padded string. If x is a vector and width is left to NULL, it will be set to the length of the largest string in x. |
pad |
string to pad with. Will be repeated as often as necessary. Default is " ". |
adj |
adjustement of the old string, one of |
If a string x has more characters than width, it will be chopped on the length of width.
the string
Christian W. Hoffmann <c-w.hoffmann@sunrise.ch>
some extensions Andri Signorell <andri@signorell.net>
StrPad("My string", 25, "XoX", "center")
# [1] "XoXXoXXoMy stringXXoXXoXX"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.