码迷,mamicode.com
首页 > 编程语言 > 详细

正则中使用变量及数组去重的方法

时间:2017-10-26 13:58:09      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:[]   函数   style   i++   转义   cti   unique   code   div   

1、正则中使用变量;

正常的:

var reg=/(\\d)(?=(\\d{4})+$)/g;

加变量的:

//    正则中引入变量,注意用eval函数包裹,\d要改成\\d其他的类似都要转义
        var reg = eval(‘/(\\d)(?=(\\d{‘+zunum+‘})+$)/g‘);

注意:\d 之类的要写成 \\d ;

   要使用eval();

2、数组去重

//    去重复
        var arrhave=[‘1‘,‘2‘,‘3‘,‘4‘,‘5‘,‘5‘,‘5‘];
        Array.prototype.unique3=function(){
            var res=[];
            var jsona={};
            for(var i=0;i<this.length;i++){
                if(!jsona[this[i]]){
                    res.push(this[i]);
                    jsona[this[i]]=1;
                }
            }
            return res;
        };
        arrhave=arrhave.unique3();

 

正则中使用变量及数组去重的方法

标签:[]   函数   style   i++   转义   cti   unique   code   div   

原文地址:http://www.cnblogs.com/gaidalou/p/7736068.html

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