欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

正则表达式简单的检查输入email是否合法程序

程序员文章站 2022-07-02 20:45:47
function chkemail(email) on error resume next dim i,l,pos1,po...
function chkemail(email)
on error resume next
dim i,l,pos1,pos2
chkemail=true
if isnull(email) then chkemail=false:exit function 
pos1= instr(email,"@")
pos2=instrrev(email,".")
if not(pos1>0) or not (pos2>0) or pos1>pos2 then 
chkemail=false
end if
if err.number<>0 then err.clear
end function