首页 > 学院 > 开发设计 > 正文

用vbscript判断email地址的合法性

2019-11-18 21:13:41
字体:
来源:转载
供稿:网友
这里是一断正则表达式的例子
<%
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
%>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表