ValidateEmail

By | 2002-06-01

Provides the user with a means of validating an email address. Using the like keyword, checks the email address with a specific pattern and will pick up on invalid chars for example, john.doe@.test.com will return false as would john.doe@com.

Original Author: Chris Priest

Inputs

strEmail – Email address that needs to be checked

Assumptions

The like statement allows pattern matching against the email address.
Like “*@[a-z,0-9]*.*”
This would allow anything before the @ sign, and the first letter after the @ sign must be either a number of letter and somewhere after that there must be at least one full stop

Returns

Boolean value indicating if email address is valid

Code

Public Function ValidateEmail(strEmail As String) As Boolean

ValidateEmail = strEmail Like "*@[A-Z,a-z,0-9]*.*"

End Function

Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.