Extracting numbers from vectors of strings

前端 未结 11 1114
佛祖请我去吃肉
佛祖请我去吃肉 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:39

    Here's an alternative to Arun's first solution, with a simpler Perl-like regular expression:

    as.numeric(gsub("[^\\d]+", "", years, perl=TRUE))
    

提交回复
热议问题