·您现在的位置: 云翼网络 >> 文章中心 >> 网站建设 >> 网站建设开发 >> ASP网站建设 >> 用vbscript判断email地址的合法性

用vbscript判断email地址的合法性

作者:佚名      ASP网站建设编辑:admin      更新时间:2022-07-23
这里是一断正则表达式的例子
<%
Function isemail(strng)
    isemail = false
    Dim regEx, Match ' Create variables.
    Set regEx = New RegExp   ' Create a regular exPRession object (stupid, huh?)
    regEx.Pattern = "^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$" ' Sets pattern.
    regEx.IgnoreCase = True   ' Set case insensitivity.
    Set Match = regEx.Execute(strng)   ' Execute search.
if match.count then isemail= true
End Function
%>