| trim_anything {filesstrings} | R Documentation |
The stringi and stringr packages let you trim whitespace, but
what if you want to trim something else from either (or both) side(s) of a
string? This function lets you select which pattern to trim and from which
side(s).
trim_anything(string, pattern, side = "both")
string |
A string. |
pattern |
A string. The pattern to be trimmed (not interpreted as
regular expression). So to trim a period, use |
side |
Which side do you want to trim from? |
A string.
trim_anything("..abcd.", ".", "left")
trim_anything("-ghi--", "-")
trim_anything("-ghi--", "--")