Regular Expression in Base R Regex to identify email address

前端 未结 3 643
星月不相逢
星月不相逢 2020-12-19 21:32

I am trying to use the stringr library to extract emails from a big, messy file.

str_match doesn\'t allow perl=TRUE, and I can\'t figure out the escape characters t

3条回答
  •  难免孤独
    2020-12-19 21:57

    > "^[[:alnum:].-_]+@[[:alnum:].-]+$"->regex
    > str_match(emails, regex)
         [,1]                   
    [1,] "larry@gmail.com"      
    [2,] "larry-sally@sally.com"
    [3,] "larry@sally.larry.com"
    

    The @-sign is not in need of escaping in regex. And "." and "-" are not special in character classes. If you want to add a requirement for ".com",".co", ".edu", ".org" then you should specify how complete that list needs to be.

    As pointed out by M42, this is not a surefire method. In fact it is claimed that there is no sure-fire method: Using a regular expression to validate an email address

提交回复
热议问题