1 min read

excel right() function in R

andreacirilloac

as part of the** excel functions in R,** I have developed this custom function, reproducing the excel right() function in th R language. Feel free to copy and use it.

[code language=“r”] right = function (string, char){ substr(string,nchar(string)-(char-1),nchar(string))} [/code]

you can find other function in the Excel functions in R post.

comments disclaimer
thank you for taking the time to comment. If the comment you are about to write is related to a piece of code I wrote, please reach its Github respository and place there any request of improvement or report of bugs.