Introduction Most of the time users asking a question, how to valid email address in correct format. Yes we can do this simply using regular expression. Pattern :^\w+@[a-zA-Z_]+?\.[a-zA-Z]{2,3}$ Description:Simple email expression. Matches:ssmith@gmail.com Non macthes:test@web.net Thank you RRaveen |