正则验证,match()与test()函数的区别?

前端之家收集整理的这篇文章主要介绍了正则验证,match()与test()函数的区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

test是RegExp的方法,参数是字符串,返回值是boolean类型。
match是String的方法,参数是正则表达式,返回值是数组。

案例:

复制<a href=代码" style="margin:0px;padding:0px;border:none;" src="http://common.cnblogs.com/images/copycode.gif">

1//判断日期类型是否为YYYY-MM-DD格式的类型2functionIsDate(){
3varstr=document.getElementById('str').value.trim();
4if(str.length!=0){
5varreg=/^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2})$/;
6varr=str.match(reg);
7if(r==null)
8alert('对不起,您输入的日期格式不正确!');//请将“日期”改成你需要验证的属性名称!9}
10}

复制<a href=代码" style="margin:0px;padding:0px;border:none;" src="http://common.cnblogs.com/images/copycode.gif">

复制<a href=代码" style="margin:0px;padding:0px;border:none;" src="http://common.cnblogs.com/images/copycode.gif">

1//判断输入的字符是否为中文2functionIsChinese()
3{
4varstr=document.getElementById('str').value.trim();
5if(str.length!=0){
6reg=/^[\u0391-\uFFE5]+$/;
7if(!reg.test(str)){
8alert("对不起,您输入的字符串类型格式不正确!");//请将“字符串类型”要换成你要验证的那个属性名称!9}
10}
11}

复制<a href=代码" style="margin:0px;padding:0px;border:none;" src="http://common.cnblogs.com/images/copycode.gif">

原文链接:https://www.f2er.com/regex/358327.html

猜你在找的正则表达式相关文章