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

JavaScript object has key with specific regex pattern - Stack Overflow

programmeradmin2浏览0评论

How to find whether a JavaScript object has key with specific regex pattern ? For example, in the below object, how to find whether it contains a key containing the word "Address"?

var obj = {Address_Line1 : "XXX", Address_Line2 :"YYY", Name : "ZZZ"};

How to find whether a JavaScript object has key with specific regex pattern ? For example, in the below object, how to find whether it contains a key containing the word "Address"?

var obj = {Address_Line1 : "XXX", Address_Line2 :"YYY", Name : "ZZZ"};
Share Improve this question edited Jan 8, 2016 at 6:13 user663031 asked Jan 8, 2016 at 5:54 SabithaSabitha 2835 silver badges14 bronze badges 3
  • 3 Object.keys(obj).toString().indexOf('Address') !== -1 – Tushar Commented Jan 8, 2016 at 5:55
  • What is your issue? Do you need to know how to get the keys of an object? Do you need to know how to loop across them? Do you need to know how to find if one string is contained in another? – user663031 Commented Jan 8, 2016 at 6:01
  • Not sure if the answer I provided is what he wants, but it's what he is currently asking for. @Tushar's solution is better for the exact spec, but if OP ever needs to check each key with a regex, my solution might cover that more easily. – Scott Commented Jan 8, 2016 at 6:08
Add a ment  | 

1 Answer 1

Reset to default 9

Sure - you can do this with Array.prototype.some and Object.keys, like so:

var obj = {Address_Line1 : "XXX", Address_Line2 :"YYY", Name : "ZZZ"};

var hasKeyRegex = Object.keys(obj).some(function(key) {
  return /Address/.test(key);
});

console.log(hasKeyRegex);

hasKeyRegex will be true if the object has a key containing Address, and false if not.

发布评论

评论列表(0)

  1. 暂无评论