ASP isvalidemail Verification Email address function (email) _ Application Tips

Source: Internet
Author: User
Copy Code code as follows:

'********************************************
' Function name: IsValidEmail
' Function: Check email address legality
' Parameters: Email----email address to check
' Return value: True----Email address is valid
' False----Email address is illegal
'********************************************
Public Function IsValidEmail (Email)
Dim names, name, I, C
IsValidEmail = True
Names = Split (Email, "@")
If UBound (names) <> 1 Then isvalidemail = False:exit Function
For each name in names
If Len (name) <= 0 Then isvalidemail = false:exit Function
For I = 1 to Len (name)
c = LCase (Mid (name, I, 1))
If InStr ("abcdefghijklmnopqrstuvwxyz_-.", c) <= 0 and not IsNumeric (c) Then IsValidEmail = False:exit Function
Next
If Left (name, 1) = "." Or Right (name, 1) = "." Then IsValidEmail = False:exit Function
Next
If InStr (Names (1), ".") <= 0 Then isvalidemail = false:exit Function
I = Len (names (1))-InStrRev (names (1), ".")
If I <> 2 and I <> 3 Then isvalidemail = False:exit Function
If InStr (Email, "...") > 0 Then isvalidemail = False
End Function


Other languages can refer to:
e-mail address regular expression validation code collection cloud-dwelling Community Special edition
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.