码迷,mamicode.com
首页 > Web开发 > 详细

js正则表达式的match test exec replace函数

时间:2017-07-30 23:50:41      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:regexp   https   索引   数组   log   school   输入   function   表达   

js正则表达式的方法:一种正则在前,一种正则在后:

技术分享

使用:

1.exec

 var res = /\-[a-z]/g .exec("font-size");

console.log(res);

得到的结果:

技术分享

所以返回的是一个数组,第一个为匹配值,第二个是匹配的位置,第三个是输入的数

2.test

var res = /\-[a-z]/g .test("font-size");
console.log(res);

技术分享

返回为一个布尔值

3.match

var res =("font-size-style").match( /\-[a-z]/g );
console.log(res);

技术分享

 

返回为匹配到的值

4.replace

("font-size-style").replace( /\-[a-z]/g ,function(a,b,c){
console.log(a);
console.log(b);
console.log(c);
});

技术分享

返回的a为匹配值,b为索引值,C为输入值;当有多个值的时候,如上图,是一组循环,这种非常适合匹配多值

replace常用来匹配全局,匹配首字母

 


 

 

 

 

 

 

 

参考链接:https://www.w3cschool.cn/regexp/m2ez1pqk.html  (W3Cschool)

js正则表达式的match test exec replace函数

标签:regexp   https   索引   数组   log   school   输入   function   表达   

原文地址:http://www.cnblogs.com/Catherine001/p/7260711.html

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