Javascript:
var pattern = new RegExp("^[_A-Za-z0-9-]+(\\.[_A-Za-z0-9-]+)*@[A-Za-z0-9]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$");
var result = pattern .test(str);
The regex is not allowed for:
[email protected]
[email protected]..
Allowed for:
[email protected]
[email protected]
Source: http://www.mkyong.com/regular-expressions/10-java-regular-expression-examples-you-should-know/