
Last chance! 50% off unlimited learning
Sale ends in
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)
a vector of strings.
the maximum length of the returned strings.
The string(s) passed as x now with a maximum length of maxlen + 3 (for the ellipsis).
String functions:
nchar
, match
, grep
, regexpr
, substr
, sub
, gsub
,
StrTrim
, StrDist
# NOT RUN {
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=" ")
# }
Run the code above in your browser using DataLab