strTail {tidyrules} | R Documentation |
Picks the substring starting from the first character
strTail(string, n)
string |
string |
n |
(integer) Number of characters |
'n' can be in the interval [-len + 1, len] (both ends inclusive)
A string
tidyrules:::strTail(c("string", "string2"), 2)
tidyrules:::strTail(c("string", "string2"), -1)