tomhoppe.com

Racing, Web Development, Photography, and Beer...Stuff that matters.

Archive for December, 2009

Quick email validation regex

Monday, December 7th, 2009

So I don’t have to google for this one again, since I won’t remember it. Here is a quick regex to verify that your email address is valid. Should take care of most email addresses.

var emailRegEx = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+.[A-Z]{2,4}$/i;