Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Regular Expression in Base R Regex to identify email address

Tags:

regex

r

stringr

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 to get it to work.

Can someone recommend a relatively robust regex that would work in the context below?

c("[email protected]", "[email protected]", "[email protected]")->emails
"SomeRegex"->regex
str_match(emails, regex)
like image 490
toomey8 Avatar asked Dec 19 '22 23:12

toomey8


2 Answers

> "^[[:alnum:].-_]+@[[:alnum:].-]+$"->regex
> str_match(emails, regex)
     [,1]                   
[1,] "[email protected]"      
[2,] "[email protected]"
[3,] "[email protected]"

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

like image 98
IRTFM Avatar answered Jan 31 '23 09:01

IRTFM


I found this regex worked better for me:

^[[:alnum:]._-]+@[[:alnum:].-]+$

Dash does have a special meaning in a character class unless it is the last character. It is a range operator, as in "A-Z"

like image 24
Ken Taylor Avatar answered Jan 31 '23 08:01

Ken Taylor