Skip to content

Instantly share code, notes, and snippets.

@itspriddle
Created April 23, 2009 07:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itspriddle/100367 to your computer and use it in GitHub Desktop.
Save itspriddle/100367 to your computer and use it in GitHub Desktop.
def validate_email_address(address)
address.match(/^[A-Z0-9._%+-]+@(?:[A-Z0-9-]+\.)+(?:[A-Z]{2}|com|org|net|edu|gov|mil|biz|info|mobi|name|aero|jobs|museum)$/i).nil? ? false : true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment