Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am searching for a way to retrieve all emails addresses from a given string. For example: if i have the string "AB CD [ABCD@gmail.com]" i want to receive only "ABCD@gmail.com".

I guess i should use RegExp and String match function, but i am not sure how.

Any ideas?

share|improve this question

2 Answers

up vote 5 down vote accepted

String.match is indeed the way to go:

var email:String = "foo foo bar@barbar.com sploof";
var matches:Array = email.match(/[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/g); 

This uses a regex to match a RFC2822 from the community regexes of regexr.

share|improve this answer
great answer. Thanks :) – Erik Sapir Aug 26 '10 at 8:15

I suggest you to read here about a proper regexp to match emails. And yes, you should use the match function of your language but keep in mind that you have to adapt your regex to your email pattern, like, in this case, you may include the presence of [ and ].

I also advice to use Regex Buddy to try and test regexp, it's the best tool out there imho.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.