rvn_substrRight {RavenR} | R Documentation |
Returns n characters from the right side of the supplied string x.
rvn_substrRight(x, n)
x |
a string to manipulate |
n |
number of characters to use from the right side of the string |
rvn_substrLeft
for using n characters from the left side
of string
rvn_substrMRight
for removing n characters from the right side of
a string
rvn_substrMLeft
for removing n characters from the left side of a
string
rvn_substrRight("hello world",3)
# returns "rld"