首页 > 开发 > 综合 > 正文

用vbscript判断email地址的合法性

2024-07-21 02:15:34
字体:
来源:转载
供稿:网友
这里是一断正则表达式的例子
<%
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
%>

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