打印本文 打印本文  关闭窗口 关闭窗口  
一个验证EMAIL是否合法的函数(VBScript)
作者:不详  文章来源:瓷都热线http://cidu.net  点击数  更新时间:2003/4/20  文章录入:不详  责任编辑:不详


<%
function isemail(str)
if isnull(str) then
exit function
end if

dim regstr,regex
set regex=New RegExp
regex.pattern="\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"
isemail=regex.test(str)
set regex=nothing
end function

if not isemail("liahui@163.net") then
response.write "不正确的Email"
else
response.write "正确的Email"
end if
%>


打印本文 打印本文  关闭窗口 关闭窗口