Extracting numbers from vectors of strings

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

    Update Since extract_numeric is deprecated, we can use parse_number from readr package.

    library(readr)
    parse_number(years)
    

    Here is another option with extract_numeric

    library(tidyr)
    extract_numeric(years)
    #[1] 20  1
    

提交回复
热议问题