VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

ValidateEmail

Chris Priest  (1 Submission)   Internet/HTML   Visual Basic 3.0   Unknown Difficulty   Wed 3rd February 2021

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, [email protected] will return false as would john.doe@com.

Inputs
strEmail - Email address that needs to be checked

Assumes
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

Rate ValidateEmail (39(39 Vote))
ValidateEmail.bas

ValidateEmail Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters