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

JavaScript 利用 filter+正则表达式对 list进行过滤包括模糊匹配

时间:2019-08-19 14:32:50      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:大小   arc   正则   col   list   turn   users   regexp   arch   

search(e){

  this.users=this.users.filter((item)=>{
    var reg= new RegExp(this.searchText,‘i‘);
    return reg.test(item.name);
  });
}

注:正则中的“i”指忽略大小写!

JavaScript 利用 filter+正则表达式对 list进行过滤包括模糊匹配

标签:大小   arc   正则   col   list   turn   users   regexp   arch   

原文地址:https://www.cnblogs.com/wohenxinwei/p/11376850.html

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