powered by
Shorten strings to strings with a fix width of characters
fixWidthStr(str, nchar = 8, align = c("left", "right"))
A vector of strings
The fixed with
Character, how to align Strings with more or fewer characters than nchar are either shortened or filled (with spaces)
nchar
A vector of strings with fixed widths
shortenStr
# NOT RUN { inputStrs <- c("abc", "abcd", "abcde", "abcdefg", "NA", NA) outputStrs <- fixWidthStr(inputStrs, nchar=4) stopifnot(all(nchar(outputStrs)==4)) # }
Run the code above in your browser using DataLab