Createuserwizard emailregularexpression

A very specific request!

The Create User Wizard in.NET uses a regular expression to validate the email address entered by the user. The default regular expression used is:

^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z0-9\-]+\.+)+.[a-zA-Z]{2,}))$

This regular expression matches most common email address formats, including:

Here's a breakdown of the regular expression:

Keep in mind that this regular expression does not validate whether the email address actually exists or is in use. It only checks the format of the email address.