源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

判断Email地址是否正确的几个函数(asp/php/javascript)

  • 时间:2020-11-12 07:23 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:判断Email地址是否正确的几个函数(asp/php/javascript)
[b]用js判断[/b]
[u]复制代码[/u] 代码如下:
function is_email( str ){ p = /^([\w\.-]+)@([a-zA-Z0-9-]+)(\.[a-zA-Z\.]+)$/; if(str.search(p) == -1){ return false; }else{ return true; } }
[b]用PHP判断[/b]
[u]复制代码[/u] 代码如下:
function is_email($email){ $pattern="/^([\w\.-]+)@([a-zA-Z0-9-]+)(\.[a-zA-Z\.]+)$/i";//包含字母、数字、下划线_和点.的名字的email if(preg_match($pattern,$email,$matches)){ return true; }else{ return false; } }
[b]用ASP判断 [/b]
[u]复制代码[/u] 代码如下:
function IsValidEmail(email) dim names, name, i, c IsValidEmail = true names = Split(email, "@") if UBound(names) <> 1 then IsValidEmail = false exit function end if for each name in names if Len(name) <= 0 then IsValidEmail = false exit function end if for i = 1 to Len(name) c = Lcase(Mid(name, i, 1)) if InStr("abcdefghijklmnopqrstuvwxyz_-.", c) <= 0 and not IsNumeric(c) then IsValidEmail = false exit function end if next if Left(name, 1) = "." or Right(name, 1) = "." then IsValidEmail = false exit function end if next if InStr(names(1), ".") <= 0 then IsValidEmail = false exit function end if i = Len(names(1)) - InStrRev(names(1), ".") if i <> 2 and i <> 3 then IsValidEmail = false exit function end if if InStr(email, "..") > 0 then IsValidEmail = false end if end function
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部