Question

I have a object like this

var obj = {"$match":{"name.first":"aa"}}

In nodejs, how can I search for $ pattern inside an object. Any help on this will be really helpful.

Thanks.

Was it helpful?

Solution

var text = JSON.stringify(obj); var n=text.match(/\$/g);

OTHER TIPS

Short version? you can't, long version? you have to write your own function to do it.\

a very simple implementation :

var searchObj = function(obj, key, value) {
    if(obj[key] === value) return obj;
    for(var k in obj) {
        var v = obj[k];
        if(obj.hasOwnProperty(k) && typeof v === 'object'){
            if(v[key] === value) return v;
        }
    }
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top