主頁 > 知識庫 > JavaScript email郵箱/郵件地址的正則表達式及分析

JavaScript email郵箱/郵件地址的正則表達式及分析

熱門標簽:400電話辦理電話辦理 呼叫系統(tǒng)外呼只能兩次 地圖標注教學點 貴港公司如何申請400電話 ai電話機器人搭建 甘肅醫(yī)療外呼系統(tǒng)排名 外呼系統(tǒng)無呼出路由是什么原因 梅縣地圖標注 西藏智能外呼系統(tǒng)代理商

簡言

在做用戶注冊時,常會用到郵箱/郵件地址的正則表達式。本文列舉了幾種方案,大家可以根據自己的項目情況,選擇最適合的方案。

方案1 (常用)

規(guī)則定義如下:

  • 以大寫字母[A-Z]、小寫字母[a-z]、數(shù)字[0-9]、下滑線[_]、減號[-]及點號[.]開頭,并需要重復一次至多次[+]。
  • 中間必須包括@符號。
  • @之后需要連接大寫字母[A-Z]、小寫字母[a-z]、數(shù)字[0-9]、下滑線[_]、減號[-]及點號[.],并需要重復一次至多次[+]。
  • 結尾必須是點號[.]連接2至4位的大小寫字母[A-Za-z]{2,4}。

利用以上規(guī)則給出如下正則表達式:

var pattern = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;

完整測試代碼

!DOCTYPE HTML>
html>
head>
  meta charset="utf-8">
  title>郵箱/郵件地址的正則表達式及分析(JavaScript,email,regex)/title>
/head>
body>
div id="main">/div>
script>
  var pattern = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
  w("pattern.test('cn42du@163.com') = "+pattern.test('cn42du@163.com')+";");
  w("pattern.test('ifat3@sina.com.cn') = "+pattern.test('ifat3@sina.com.cn')+";");
  w("pattern.test('ifat3.it@163.com') = "+pattern.test('ifat3.it@163.com')+";");
  w("pattern.test('ifat3_-.@42du.cn') = "+pattern.test('ifat3_-.@42du.cn')+";");
  w("pattern.test('ifat3@42du.online') = "+pattern.test('ifat3@42du.online')+";");
  w("pattern.test('毛三胖@42du.cn') = "+pattern.test('毛三胖@42du.cn')+";");
  function w(val) {
    document.getElementById("main").innerHTML += val +"br />";
  }
/script>
/body>
/html>

測試結果:

pattern.test('cn42du@163.com') = true;
pattern.test('ifat3@sina.com.cn') = true;
pattern.test('ifat3.it@163.com') = true;
pattern.test('ifat3_-.@42du.cn') = true;
pattern.test('ifat3@42du.online') = false;
pattern.test('毛三胖@42du.cn') = false;
pattern.test('cn42du@163.com') = true;
pattern.test('ifat3@sina.com.cn') = true;
pattern.test('ifat3.it@163.com') = true;
pattern.test('ifat3_-.@42du.cn') = true;
pattern.test('ifat3@42du.online') = false;
pattern.test('毛三胖@42du.cn') = false;

方案1說明

方案1是最常用的郵件正則表達式驗證方案,也適合大多數(shù)的應用場景。從以上測試可以看出,該表達式不支持.online及.store結尾的域名。如需兼容這類域名(大于4位),調整正則結尾{2,4}的限制部分即可(例:{2,8})。另一個問題是郵件用戶名不能包括中文。

方案2 (修訂方案1)

規(guī)則補充如下:

  • 用戶名可以包括中文[\u4e00-\u9fa5]
  • 域名結尾最長可為8位{2,8}
  • 更新后的正則表達式如下:
var pattern = /^([A-Za-z0-9_\-\.\u4e00-\u9fa5])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,8})$/;

完整測試代碼

!DOCTYPE HTML>
html>
head>
  meta charset="utf-8">
  title>郵箱/郵件地址的正則表達式及分析(JavaScript,email,regex)/title>
/head>
body>
div id="main">/div>
script>
  var pattern = /^([A-Za-z0-9_\-\.\u4e00-\u9fa5])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,8})$/;
  w("pattern.test('cn42du@163.com') = "+pattern.test('cn42du@163.com')+";");
  w("pattern.test('ifat3@sina.com.cn') = "+pattern.test('ifat3@sina.com.cn')+";");
  w("pattern.test('ifat3.it@163.com') = "+pattern.test('ifat3.it@163.com')+";");
  w("pattern.test('ifat3_-.@42du.cn') = "+pattern.test('ifat3_-.@42du.cn')+";");
  w("pattern.test('ifat3@42du.online') = "+pattern.test('ifat3@42du.online')+";");
  w("pattern.test('毛三胖@42du.cn') = "+pattern.test('毛三胖@42du.cn')+";");
  function w(val) {
    document.getElementById("main").innerHTML += val +"br />";
  }
/script>
/body>
/html>

測試結果:

pattern.test('cn42du@163.com') = true;
pattern.test('ifat3@sina.com.cn') = true;
pattern.test('ifat3.it@163.com') = true;
pattern.test('ifat3_-.@42du.cn') = true;
pattern.test('ifat3@42du.online') = true;
pattern.test('毛三胖@42du.cn') = true;

方案3 (安全)

在手機驗證碼出現(xiàn)之前,差不多郵箱驗證是保證用戶唯一性的唯一條件。而臨時郵箱(也稱10分鐘郵箱或一次性郵箱)的出現(xiàn),則使得郵箱驗證及帳戶激活這種機制失去了意義。而臨時郵箱的地址是不可枚舉的,我們只能才采取白名單的方式,只允許有限的郵箱域名通過驗證。

根據方案1的補充如下規(guī)則:

郵箱域名只能是163.com,qq.com或者42du.cn。
給出正則表達式如下:

var pattern = /^([A-Za-z0-9_\-\.])+\@(163.com|qq.com|42du.cn)$/;

完整測試代碼

!DOCTYPE HTML>
html>
head>
  meta charset="utf-8">
  title>郵箱/郵件地址的正則表達式及分析(JavaScript,email,regex)/title>
/head>
body>
div id="main">/div>
script>
  var pattern = /^([A-Za-z0-9_\-\.])+\@(163.com|qq.com|42du.cn)$/;
  w("pattern.test('cn42du@163.com') = "+pattern.test('cn42du@163.com')+";");
  w("pattern.test('ifat3@sina.com.cn') = "+pattern.test('ifat3@sina.com.cn')+";");
  w("pattern.test('ifat3.it@163.com') = "+pattern.test('ifat3.it@163.com')+";");
  w("pattern.test('ifat3_-.@42du.cn') = "+pattern.test('ifat3_-.@42du.cn')+";");
  w("pattern.test('ifat3@42du.online') = "+pattern.test('ifat3@42du.online')+";");
  w("pattern.test('毛三胖dd@42du.cn') = "+pattern.test('毛三胖@42du.cn')+";");
  function w(val) {
    document.getElementById("main").innerHTML += val +"br />";
  }
/script>
/body>
/html>

測試結果:

pattern.test('cn42du@163.com') = true;
pattern.test('ifat3@sina.com.cn') = false;
pattern.test('ifat3.it@163.com') = true;
pattern.test('ifat3_-.@42du.cn') = true;
pattern.test('ifat3@42du.online') = false;
pattern.test('毛三胖dd@42du.cn') = false;

方案3驗證雖然能保證安全性,但是如果白名單太長會造成模式字符串太長。這時可以將郵箱域名白名單寫成數(shù)組,利用正則表達式做初步驗證,用白名單做域名的二次驗證。

現(xiàn)給出郵箱驗證函數(shù)如下:

var isEmail = function (val) {
  var pattern = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
  var domains= ["qq.com","163.com","vip.163.com","263.net","yeah.net","sohu.com","sina.cn","sina.com","eyou.com","gmail.com","hotmail.com","42du.cn"];
  if(pattern.test(val)) {
    var domain = val.substring(val.indexOf("@")+1);
    for(var i = 0; i domains.length; i++) {
      if(domain == domains[i]) {
        return true;
      }
    }
  }
  return false;
}
// 輸出 true
isEmail(cn42du@163.com);

上述isEmail()函數(shù)列舉了常用的11種郵箱域名,大家可以根據需要適當補充或刪減。

以上為三胖對郵箱正則表達式的理解和分析,如有不足請大家予以指正。

您可能感興趣的文章:
  • nodejs模塊nodemailer基本使用-郵件發(fā)送示例(支持附件)
  • node.js發(fā)送郵件email的方法詳解
  • 利用Node.JS實現(xiàn)郵件發(fā)送功能
  • JS中使用mailto實現(xiàn)將用戶在網頁中輸入的內容傳遞到本地郵件客戶端
  • js正則表達式驗證郵件地址
  • 純javascript實現(xiàn)自動發(fā)送郵件
  • node.js使用nodemailer發(fā)送郵件實例
  • 使用JavaScript通過前端發(fā)送電子郵件

標簽:涼山 湖州 哈密 常州 本溪 泰安 大興安嶺

巨人網絡通訊聲明:本文標題《JavaScript email郵箱/郵件地址的正則表達式及分析》,本文關鍵詞  JavaScript,email,郵箱,郵件,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《JavaScript email郵箱/郵件地址的正則表達式及分析》相關的同類信息!
  • 本頁收集關于JavaScript email郵箱/郵件地址的正則表達式及分析的相關信息資訊供網民參考!
  • 推薦文章