str_trim {stringr} | R Documentation |
Trim whitespace from start and end of string.
str_trim(string, side = c("both", "left", "right"))
string |
A character vector. |
side |
Side on which to remove whitespace (left, right or both). |
A character vector.
str_pad
to add whitespace
str_trim(" String with trailing and leading white space\t") str_trim("\n\nString with trailing and leading white space\n\n")