上篇文章我們用字符串查找的方法實(shí)現(xiàn)了asp email郵箱地址的驗(yàn)證,有可能比較喜歡正則表達(dá)式的朋友,這里也給出相應(yīng)的代碼。
方法一
復(fù)制代碼 代碼如下:
Public Function ChkMail(ByVal Email)
Dim Rep,Pmail : ChkMail = True : Set Rep = New RegExp
Rep.Pattern = "([.a-zA-Z0-9_-]){2,10}@([a-zA-Z0-9_-]){2,10}(.([a-zA-Z0-9]){2,}){1,4}$"
Pmail = Rep.Test(Email) : Set Rep = Nothing
If Not Pmail Then ChkMail = False
End Function
郵箱地址驗(yàn)證二
復(fù)制代碼 代碼如下:
%
Function isemail(strng)
isemail = false
Dim regEx, Match
Set regEx = New RegExp
regEx.Pattern = "^w+((-w+)|(.w+))*@[A-Za-z0-9]+((.|-)[A-Za-z0-9]+)*.[A-Za-z0-9]+$"
regEx.IgnoreCase = True
Set Match = regEx.Execute(strng)
if match.count then isemail= true
End Function
%>
方法三
復(fù)制代碼 代碼如下:
Public Function IsEmail(ByVal PString)
Dim Plt,Pgt : Plt = False : Pgt = False
For x = 2 To Len(PString) - 1
If Mid(PString,x,1) = "@" Then Plt = True
If Mid(PString,x,1) = "." And Plt = True Then Pgt = True
Next
If Plt = True And Pgt = True Then
IsEmail = True
Else
IsEmail = False
End if
End Function
%>
我們來(lái)看看驗(yàn)證一的實(shí)例使用方法
復(fù)制代碼 代碼如下:
If ChkMail(admin@jb51.net) = True Then
Response.Write "格式正確"
Else
Response.Write "格式有誤"
End If
您可能感興趣的文章:- JS 日期驗(yàn)證正則附asp日期格式化函數(shù)
- asp 驗(yàn)證輸入網(wǎng)址是否有效并可以訪(fǎng)問(wèn) 與正則驗(yàn)證輸入網(wǎng)址
- asp 圖片正則 替換,替換前檢查圖片是不是本地地址的方法
- 在ASP中用正則表達(dá)式對(duì)象來(lái)校驗(yàn)數(shù)據(jù)的合法性