admin管理员组文章数量:1350038
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
1 Answer
Reset to default 9Sure - 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.
本文标签: JavaScript object has key with specific regex patternStack Overflow
版权声明:本文标题:JavaScript object has key with specific regex pattern - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743853631a2550465.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论