码迷,mamicode.com
首页 > 其他好文 > 详细

常用表单校验RegExp

时间:2019-10-01 20:45:08      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:常用   read   校验   idcard   git   https   jin   test   nts   

  1. 手机号校验
  2. 身份证

手机号校验

const regExp = /^(?:\+?86)?1(?:3\d{3}|5[^4\D]\d{2}|8\d{3}|7(?:[35678]\d{2}|4(?:0\d|1[0-2]|9\d))|9[189]\d{2}|66\d{2})\d{6}$/
// example 
regExp.test(15878673234) // true

身份证

const regExp = /^[1-9]\d{5}(18|19|20)\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/;

参考:

  1. chinaMobiePhoneNumberRegExp
  2. validator.js
  3. 身份证校验
  4. 身份证校验规则

常用表单校验RegExp

标签:常用   read   校验   idcard   git   https   jin   test   nts   

原文地址:https://www.cnblogs.com/rosendolu/p/11615881.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!