Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im trying to use grep to filter a json object array so that the array is searched and if the value of any of keys #2-6 are yes, the value of keys 1 and 7 are returned.

The array is below -- in other words, if any of values for the 'location' keys are yes, the name and description are returned as list items.

Any help is VERY much appreciated.

[
    {
        "name": "name",
        "location1": "no",
    "location2": "no",
    "location3": "yes",
    "location4": "no",
    "location5": "no",
    "description": "description of services"
    },

    {   
    "name": "name",
        "location1": "yes",
    "location2": "no",
    "location3": "yes",
    "location4": "no",
    "location5": "no",
    "description": "description of services"        
    }
]
share|improve this question

2 Answers

up vote 8 down vote accepted

You will need to use both grep and map. If a is the array described above (but with name1, name2, etc), then after the following:

var b = $.grep(a, function(el, i) {
    return el.location1.toLowerCase() === "yes" 
           || el.location2.toLowerCase() === "yes" 
           || el.location3.toLowerCase() === "yes" 
           || el.location4.toLowerCase() === "yes" 
           || el.location5.toLowerCase() === "yes";
});

var c = $.map(b, function(el, i) {
    return {
        name: el.name,
        description: el.description
    };
});

c will contain [{"name":"name1","description":"description of services1"},{"name":"name2","description":"description of services2"}]

See example →

share|improve this answer
Wow - thank you, thank you- that's exactly what I was looking for -- and I havent used map or stringify before. The json data is coming from an external file and Im not exactly sure how to assign it to var a...? – usr96693102 Jun 7 '11 at 21:08
$.getJSON('yourFile.json', function(data) { // in here data will be your array }); – mVChr Jun 7 '11 at 21:57
awesome - thank u thank u! – usr96693102 Jun 7 '11 at 22:24
I know about two equal (==) signs but I am not sure about three equal (===). It is confusing. @mVChr Could you please explain it? or edit if it is a typo error. – Mandeep Janjua Oct 10 '12 at 18:00

== means it will make any data type conversions necessary before it tries to match it to "yes."

=== will NOT make any data type conversions. It has to match EXACTLY (including data type) or it will return false.

for example: "3" (string) === 3 (number) will return false.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.