正则表达式简单的检查输入email是否合法程序
更新时间:2007年04月06日 00:00:00 作者:
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
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
相关文章
使用正则表达式过滤 S3 上以 _$folder$ 结尾的占位文件的方法
当我们使用命令行批量从 S3 上拷贝文件或统计文件数量时,希望能排除掉 S3 上以 _$folder$ 结尾的占位文件,这个正则表达式应该怎么写呢,本文给大家介绍使用正则表达式过滤 S3 上以 _$folder$ 结尾的占位文件的方法,感兴趣的朋友一起看看吧2023-12-12javascript 获取url参数的正则表达式(用来获取某个参数值)
javascript 传多个参数的正则表达式(用来获取某个参数值) ,脚本之家之前发布通过函数获取url参数的代码不是正则表达式。2010-01-01
最新评论