admin管理员组文章数量:1345070
Javascript in a browser environment. I wish to get all keys in a JSON object that match a specific pattern. Say, all of them that begin with mystring
. Is there a simpler/efficient way of doing that without having to iterate through all the keys ?
{
somekey1: "someval1",
somekey2: "someval2",
mystringkey1: "someval",
mystringkey2: "someval"
}
There had been similar questions, but a) doesn't fully answer this question and b) JQuery is not an option at the moment.
Javascript in a browser environment. I wish to get all keys in a JSON object that match a specific pattern. Say, all of them that begin with mystring
. Is there a simpler/efficient way of doing that without having to iterate through all the keys ?
{
somekey1: "someval1",
somekey2: "someval2",
mystringkey1: "someval",
mystringkey2: "someval"
}
There had been similar questions, but a) doesn't fully answer this question and b) JQuery is not an option at the moment.
Share edited May 23, 2017 at 12:33 CommunityBot 11 silver badge asked Oct 19, 2015 at 15:30 AlavalathiAlavalathi 7532 gold badges10 silver badges22 bronze badges 10- 2 The simpler/efficient way is to iterate the keys. – user4227915 Commented Oct 19, 2015 at 15:32
-
surely you just do
for (... in ..)
and then test against regex each time... – Callum Linington Commented Oct 19, 2015 at 15:32 - 1 That looks like a JavaScript object, but not JSON. – Biffen Commented Oct 19, 2015 at 15:32
- 1 @WashingtonGuedes Yes, that's its name. But JSON has a different syntax, patible with, but not the same as, JavaScript. In this case the names are missing quotes. – Biffen Commented Oct 19, 2015 at 15:34
- 1 @WashingtonGuedes The OP's code does not conform to the JSON grammar; it is not JSON. It does conform the JavaScript grammar for objects, however. – apsillers Commented Oct 19, 2015 at 15:34
2 Answers
Reset to default 6As mentioned in the ments, iterate through your object and add to a result when you find a matching key.
var data = {
somekey1: "someval1",
somekey2: "someval2",
mystringkey1: "someval",
mystringkey2: "someval"
}
var filtered = {}
for (key in data) {
if (key.match(/^mystring/)) filtered[key] = data[key];
}
console.log(filtered)
Use Object.keys and filter
var myObj = {
somekey1: "someval1",
somekey2: "someval2",
mystringkey1: "someval",
mystringkey2: "someval"
};
var pattern = /^mystring/;
var matchingKeys = Object.keys(myObj).filter(function(key) {
return pattern.test(key);
});
console.log(matchingKeys);
本文标签: javascriptGet all JSON keys that match a patternStack Overflow
版权声明:本文标题:javascript - Get all JSON keys that match a pattern - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743771731a2536247.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论