手机号码的校验
const phoneReg = /^[1][3,4,5,6,7,8,9][0-9]{9}$/const phoneStr1 = '18886233487'console.log(phoneReg.test(phoneStr1)) // trueconst phoneStr2 = '17283017203897'console.log(phoneReg.test(phoneStr2)) // false
身份证的校验
const sfzReg = /^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/const sfzStr1 = '415106199801012130'console.log(sfzReg.test(sfzStr1)) // trueconst sfzStr2 = '718381298381212183'console.log(sfzReg.test(sfzStr2)) // false
身份证提取生日和性别
const idNumber = '415106199801012130'const birthday = idNumber.substring(6, 10) + "-" + idNumber.substring(10, 12) + "-" + idNumber.substring(12, 14);const sex = parseInt(idNumber.substr(16, 1)) % 2 == 1 ? '男' : '女'
邮箱的校验
const emailReg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/const emailStrWY = '956666@163.com' // 163邮箱const emailStrQQ = '956666@qq.com' // qq邮箱console.log(emailReg.test(emailStrWY)) // trueconsole.log(emailReg.test(emailStrQQ)) // trueconst noEmail = '72873213.com'console.log(emailReg.test(noEmail)) // false
URL的校验
const urlReg = /^((https?|ftp|file):\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$/let urlReg = /^(((ht|f)tps?):\/\/)?[\w\-]+(\.[\w\-]+)+([\w\-.,@?^=%&:\/~+#]*[\w\-@?^=%&\/~+#])?$/const urlStr1 = 'https://haha.sunshine.com/xxx/xxx'console.log(urlReg.test(urlStr1)) // trueconst urlStr2 = 'sss://haha.sunshine.com/xxx/xxx'console.log(urlReg.test(urlStr2)) // false
银行卡的校验
const bcardReg = /^[0-9_]{15,19}$/const urlStr1 = 'https://haha.sunshine.com/xxx/xxx'console.log(bcardReg.test(urlStr1)) // trueconst urlStr2 = 'sss://haha.sunshine.com/xxx/xxx'console.log(bcardReg.test(urlStr2)) // false
护照(包含香港、澳门)校验
const hzReg =/(^[EeKkGgDdSsPpHh]\d{8}$)|(^(([Ee][a-fA-F])|([DdSsPp][Ee])|([Kk][Jj])|([Mm][Aa])|(1[45]))\d{7}$)/const urlStr1 = 'https://haha.sunshine.com/xxx/xxx'console.log(hzReg.test(urlStr1)) // trueconst urlStr2 = 'sss://haha.sunshine.com/xxx/xxx'console.log(hzReg.test(urlStr2)) // false
IPv4的校验
const ipv4Reg = /^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/const ipv4Str1 = '122.12.56.65'console.log(ipv4Reg.test(ipv4Str1)) // trueconst ipv4Str2 = '122.12.56.655'console.log(ipv4Reg.test(ipv4Str2)) // false
16进制颜色的校验
const color16Reg = /^#?([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$/const color16Str1 = '#fff'console.log(color16Reg.test(color16Str1)) // trueconst color16Str2 = '#1234567'console.log(color16Reg.test(color16Str2)) // false
日期 YYYY-MM-DD
const dateReg = /^\d{4}(\-)\d{1,2}\1\d{1,2}$/const dateStr1 = '2021-10-10'console.log(dateReg.test(dateStr1)) // trueconst dateStr2 = '2021-01-01 1'console.log(dateReg.test(dateStr2)) // false
日期 YYYY-MM-DD hh:mm:ss
const dateReg = /^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2}) (\d{1,2}):(\d{1,2}):(\d{1,2})$/const dateStr1 = '2021-10-10 16:16:16'console.log(dateReg.test(dateStr1)) // trueconst dateStr2 = '2021-10-10 16:'console.log(dateReg.test(dateStr2)) // false
整数的校验
const intReg = /^[-+]?\d*$/const numReg = /^[0-9]*$/const intNum1 = 12345console.log(intReg.test(intNum1)) // trueconst intNum2 = 12345.1console.log(intReg.test(intNum2)) // false
小数的校验
const floatReg = /^[-\+]?\d+(\.\d+)?$/const floatNum = 1234.5console.log(floatReg.test(floatNum)) // true
保留n位小数
function checkFloat(n) {return new RegExp(`^([1-9]+[\d]*(.[0-9]{1,${n}})?)$`)}// 保留2位小数const floatReg = checkFloat(2)const floatNum1 = 1234.5console.log(floatReg.test(floatNum1)) // trueconst floatNum2 = 1234.55console.log(floatReg.test(floatNum2)) // trueconst floatNum3 = 1234.555console.log(floatReg.test(floatNum3)) // false
邮政编号的校验
const postalNoReg = /^\d{6}$/const postalNoStr1 = '522000'console.log(postalNoReg.test(postalNoStr1)) // trueconst postalNoStr2 = '5220000'console.log(postalNoReg.test(postalNoStr2)) // false
QQ号的校验
const qqReg = /^[1-9][0-9]{4,10}$/const qqStr1 = '1915801633'console.log(qqReg.test(qqStr1)) // trueconst qqStr2 = '191580163333'console.log(qqReg.test(qqStr2)) // false
微信号的校验
说明:6至20位,以字母开头,字母,数字,减号,下划线
const wxReg = /^[a-zA-Z]([-_a-zA-Z0-9]{5,19})+$/const wxStr1 = 'linsanxin885577'console.log(wxReg.test(wxStr1)) // trueconst wxStr2 = '厉害了我的vx'console.log(wxReg.test(wxStr2)) // false
车牌号的校验
const carNoReg = /^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-Z0-9]{4}[A-Z0-9挂学警港澳]{1}$/const carNoStr1 = '粤A12345'console.log(carNoReg.test(carNoStr1)) // trueconst carNoStr2 = '广东A12345'console.log(carNoReg.test(carNoStr2)) // false
只含字母的字符串
const letterReg = /^[a-zA-Z]+$/const letterStr1 = 'sunshineLin'console.log(letterReg.test(letterStr1)) // trueconst letterStr2 = 'sunshine_Lin'console.log(letterReg.test(letterStr2)) // false
包含中文/英文的字符串
const cnReg = /[\u4E00-\u9FA5]/const enReg=/(^[a-zA-Z]$)/const cnStr1 = '我是sunshine_Lin,林三心'console.log(cnReg.test(cnStr1)) // trueconst cnStr2 = 'sunshine_Lin'console.log(cnReg.test(cnStr2)) // false
密码强度的校验
说明:密码中必须包含字母、数字、特称字符,至少8个字符,最多30个字符
const passwordReg = /(?=.*[0-9])(?=.*[a-zA-Z])(?=.*[^a-zA-Z0-9]).{8,30}/const password1 = 'sunshine_Lin12345..'console.log(passwordReg.test(password1)) // trueconst password2 = 'sunshineLin12345'console.log(passwordReg.test(password2)) // false
字符串长度n的校验
function checkStrLength(n) {return new RegExp(`^.{${n}}$`)}// 校验长度为3的字符串const lengthReg = checkStrLength(3)const str1 = 'hhh'console.log(lengthReg.test(str1)) // trueconst str2 = 'hhhhh'console.log(lengthReg.test(str2)) // false
文件拓展名的校验
function checkFileName (arr) {arr = arr.map(name => `.${name}`).join('|')return new RegExp(`(${arr})$`)}const filenameReg = checkFileName(['jpg', 'png', 'txt'])const filename1 = 'sunshine.jpg'console.log(filenameReg.test(filename1)) // trueconst filename2 = 'sunshine.png'console.log(filenameReg.test(filename2)) // trueconst filename3 = 'sunshine.txt'console.log(filenameReg.test(filename3)) // trueconst filename4 = 'sunshine.md'console.log(filenameReg.test(filename4)) // false
匹配img和src
const imgReg = /<img.*?src=[\"|\']?(.*?)[\"|\']?\s.*?>/igconst htmlStr = '<div></div><img src="sunshine.png" /><img src="sunshine111.png" />'console.log(imgReg.exec(htmlStr))// [// '<img src="sunshine.png" />',// 'sunshine.png',// index: 11,// input: '<div></div><img src="sunshine.png" /><img src="sunshine111.png" />',// groups: undefined// ]console.log(imgReg.exec(htmlStr))// [// '<img src="sunshine111.png" />',// 'sunshine111.png',// index: 37,// input: '<div></div><img src="sunshine.png" /><img src="sunshine111.png" />',// groups: undefined// ]
匹配html中的注释
const noteReg = /<!--(.*?)-->/gconst htmlStr = '<!--一个div标签--> <div></div> <!--一个div标签--> <div></div>'console.log(noteReg.exec(htmlStr))// [// '<!--一个div标签-->',// '一个div标签',// index: 0,// input: '<!--一个div标签--> <div></div> <!--一个div标签--> <div></div>',// groups: undefined// ]console.log(noteReg.exec(htmlStr))// [// '<!--一个div标签-->',// '一个div标签',// index: 27,// input: '<!--一个div标签--> <div></div> <!--一个div标签--> <div></div>',// groups: undefined// ]
匹配html中的style
const styleReg = /style="[^=>]*"([(\s+\w+=)|>])/gconst htmlStr = '<div style="background:#000;"><span style="color:#fff"></span></div>'console.log(styleReg.exec(htmlStr))// [// 'style="background:#000;">',// '>',// index: 5,// input: '<div style="background:#000;"><span style="color:#fff"></span></div>',// groups: undefined// ]console.log(styleReg.exec(htmlStr))// [// 'style="color:#fff">',// '>',// index: 36,// input: '<div style="background:#000;"><span style="color:#fff"></span></div>',// groups: undefined// ]
匹配html中的颜色
const colorReg = /#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})/gconst htmlStr = '<div style="background:#000;"><span style="color:#fff"></span></div>'console.log(colorReg.exec(htmlStr))// [// '#000',// '000',// index: 23,// input: '<div style="background:#000;"><span style="color:#fff"></span></div>',// groups: undefined// ]console.log(colorReg.exec(htmlStr))// [// '#fff',// 'fff',// index: 49,// input: '<div style="background:#000;"><span style="color:#fff"></span></div>',// groups: undefined// ]
匹配htmlTag(html标签)
const endReg = /<("[^"]*"|'[^']*'|[^'">])*>/gconst htmlStr = '<div style="background:#000;"><span style="color:#fff"></span></div><h1></h1>'console.log(endReg.exec(htmlStr))console.log(endReg.exec(htmlStr))console.log(endReg.exec(htmlStr))console.log(endReg.exec(htmlStr))console.log(endReg.exec(htmlStr))console.log(endReg.exec(htmlStr))
其他
一、校验数字的表达式1 数字:^[0-9]*$2 n位的数字:^\d{n}$3 至少n位的数字:^\d{n,}$4 m-n位的数字:^\d{m,n}$5 零和非零开头的数字:^(0|[1-9][0-9]*)$6 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(.[0-9]{1,2})?$7 带1-2位小数的正数或负数:^(\-)?\d+(\.\d{1,2})?$8 正数、负数、和小数:^(\-|\+)?\d+(\.\d+)?$9 有两位小数的正实数:^[0-9]+(.[0-9]{2})?$10 有1~3位小数的正实数:^[0-9]+(.[0-9]{1,3})?$11 非零的正整数:^[1-9]\d*$ 或 ^([1-9][0-9]*){1,3}$ 或 ^\+?[1-9][0-9]*$12 非零的负整数:^\-[1-9][]0-9"*$ 或 ^-[1-9]\d*$13 非负整数:^\d+$ 或 ^[1-9]\d*|0$14 非正整数:^-[1-9]\d*|0$ 或 ^((-\d+)|(0+))$15 非负浮点数:^\d+(\.\d+)?$ 或 ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0$16 非正浮点数:^((-\d+(\.\d+)?)|(0+(\.0+)?))$ 或 ^(-([1-9]\d*\.\d*|0\.\d*[1-9]\d*))|0?\.0+|0$17 正浮点数:^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$ 或 ^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$18 负浮点数:^-([1-9]\d*\.\d*|0\.\d*[1-9]\d*)$ 或 ^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*)))$19 浮点数:^(-?\d+)(\.\d+)?$ 或 ^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0)$二、校验字符的表达式1 汉字:^[\u4e00-\u9fa5]{0,}$2 英文和数字:^[A-Za-z0-9]+$ 或 ^[A-Za-z0-9]{4,40}$3 长度为3-20的所有字符:^.{3,20}$4 由26个英文字母组成的字符串:^[A-Za-z]+$5 由26个大写英文字母组成的字符串:^[A-Z]+$6 由26个小写英文字母组成的字符串:^[a-z]+$7 由数字和26个英文字母组成的字符串:^[A-Za-z0-9]+$8 由数字、26个英文字母或者下划线组成的字符串:^\w+$ 或 ^\w{3,20}$9 中文、英文、数字包括下划线:^[\u4E00-\u9FA5A-Za-z0-9_]+$10 中文、英文、数字但不包括下划线等符号:^[\u4E00-\u9FA5A-Za-z0-9]+$ 或 ^[\u4E00-\u9FA5A-Za-z0-9]{2,20}$11 可以输入含有^%&',;=?$\"等字符:[^%&',;=?$\x22]+12 禁止输入含有~的字符:[^~\x22]+
获取url参数
// 方法1function getUrlParams(name) {var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); //定义正则表达式var r = window.location.search.substr(1).match(reg);if (r != null) return unescape(r[2]);return null;}window.location = "http://www.baidu.com?name=elephant&age=25&sex=male";var name = getUrlParams("name"); //elephantvar age = getUrlParams("age"); //25var sex = getUrlParams("sex"); //male// 方法3function parse_url(_url){ //定义函数var pattern = /(\w+)=(\w+)/ig;//定义正则表达式var parames = {};//定义数组url.replace(pattern, function(a, b, c){parames[b] = c;});return parames;//返回这个数组.}var url = "http://www.baidu.com?name=elephant&age=25&sex=male"var params = parse_url(url);// ["name=elephant", "age=25", "sex=male"]
