首页 > 编程 > Regex > 正文

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

2020-03-16 21:20:43
字体:
来源:转载
供稿:网友

functionchkEmail(email)

onerrorresumenext

dimi,l,pos1,pos2

chkEmail=true

ifisnull(email)thenchkEmail=false:exitfunction

pos1=instr(email,"@")

pos2=instrRev(email,".")

ifnot(pos1>0)ornot(pos2>0)orpos1>pos2then

chkEmail=false

endif

iferr.number<>0thenerr.clear

endfunction

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