|
Regular expression for email address |
|
|
|
This regular expression will check an email address to see if its valid as best it can, there are other methods such as at http://www.regular-expressions.info/email.html but I've found the following works well enough
.*@.*\..*
|