最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

JavaScript Array - Filter out values that do not match specific strings - Stack Overflow

programmeradmin2浏览0评论

I am trying to loop through an array and filter out all the items that do not match specific values.

For example I have this array:

const emails = ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"];

I would like to filter out emails that end in"

*@hotmail *@gmail


I have given it a go and got this but this doesn't work:

const filtered = emails.filter((email) => {
  return !email.includes('@hotmail') || !email.includes('@gmail');
});

The preferred output from the example above would be:

["[email protected]", "[email protected]", "[email protected]"]

I am trying to loop through an array and filter out all the items that do not match specific values.

For example I have this array:

const emails = ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"];

I would like to filter out emails that end in"

*@hotmail. *@gmail.


I have given it a go and got this but this doesn't work:

const filtered = emails.filter((email) => {
  return !email.includes('@hotmail.') || !email.includes('@gmail.');
});

The preferred output from the example above would be:

["[email protected]", "[email protected]", "[email protected]"]
Share Improve this question asked Jan 27, 2017 at 12:58 user3180997user3180997 1,9263 gold badges21 silver badges37 bronze badges 1
  • What about return !(email.endsWith('@hotmail.') || email.endsWith('@gmail.'))? – sehrob Commented Jan 27, 2017 at 13:00
Add a ment  | 

1 Answer 1

Reset to default 10

Replace the or || with an and &&

If you select all emails which do not contain hotmail OR do not contain gmail, you'll get all of them which don't contain both which isn't your objective.
You want to get all of those that do not contain both hotmail and gmail instead!

const filtered = emails.filter((email) => {
  return !email.includes('@hotmail.') && !email.includes('@gmail.');
});
发布评论

评论列表(0)

  1. 暂无评论