I would like a regular expression that will extract email addresses from a String (using Java regular expressions).
That really works.
|
I would like a regular expression that will extract email addresses from a String (using Java regular expressions). That really works. |
|||||||||||
|
|
Here's the regular expression that really works. I've spent an hour surfing on the web and testing different approaches, and most of them didn't work although Google top-ranked those pages. I want to share with you a working regular expression:
[_A-Za-z0-9-]+(\\.[_A-Za-z0-9-]+)*@[A-Za-z0-9]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})
Here's the original link: http://www.mkyong.com/regular-expressions/how-to-validate-email-address-with-regular-expression/ |
|||||||||
|
|
Install this regex tester plugin into eclipse, and you'd have whale of a time testing regex Points to note: Surround the sections of the regex whose text you wish to capture with round brackets/ellipses. Then, you could use the group functions in Java or C# regex to find out the values of those sections. ([_A-Za-z0-9-]+)(\.[_A-Za-z0-9-]+)@([A-Za-z0-9]+)(\.[A-Za-z0-9]+) For example, using the above regex, the following string
yields
Group 0 is always the capture of whole string matched. If you do not enclose any section with ellipses, you would only be able to detect a match but not be able to capture the text. It might be less confusing to create a few regex than one long catch-all regex, since you could programmatically test one by one, and then decide which regexes should be consolidated. Especially when you find a new email pattern that you had never considered before. |
|||
|
|
I had to add some dashes to allow for them. So a final result in Javanese:
|
||||
|
|