Extracting numbers from vectors of strings

前端 未结 11 1113
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-22 04:05

I have string like this:

years<-c(\"20 years old\", \"1 years old\")

I would like to grep only the numeric number from this vector. Expe

11条回答
  •  孤街浪徒
    2020-11-22 04:45

    A stringr pipelined solution:

    library(stringr)
    years %>% str_match_all("[0-9]+") %>% unlist %>% as.numeric
    

提交回复
热议问题