Extract last word in string in R

Just for completeness: The library stringr contains a function for exactly this problem.

library(stringr)

sentence <- "The quick brown fox"
word(sentence,-1)
[1] "fox"

Leave a Comment