get_suffix {DEP} | R Documentation |
get_suffix
returns the longest common suffix
of the supplied words.
get_suffix(words)
words |
Character vector, A list of words. |
A character vector containing the suffix
# Get suffix names <- c("xyz_rep", "abc_rep") get_suffix(names)