| StrTrunc {DescTools} | R Documentation |
Truncates one or more strings to a specified length, adding an ellipsis (...)
to those strings that have been truncated.
Use formatC to justify the strings if needed.
StrTrunc(x, maxlen = 20)
x |
a vector of strings. |
maxlen |
the maximum length of the returned strings. |
The string(s) passed as x now with a maximum length of maxlen + 3 (for the ellipsis).
Andri Signorell,
following an idea of Jim Lemon in truncString()
String functions:
nchar, match, grep, regexpr, substr, sub, gsub,
StrTrim, StrDist
set.seed(1789) x <- sapply(seq(10), function(x) paste(sample(letters, sample(20,1)),collapse="")) x StrTrunc(x, maxlen=10) # right justification formatC(StrTrunc(x, maxlen=10), width = 10, flag=" ")