搜索列表
-
正则表达式简单的检查输入email是否合法程序
【正则表达式】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&n...
正则表达式简单的检查输入email是否合法程序