SyntaxFix
Write A Post
Hire A Developer
Questions
There is also str_sub from the stringr package
str_sub
x <- 'hello stackoverflow' str_sub(x, 2) # or str_sub(x, 2, str_length(x)) [1] "ello stackoverflow"