Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a big JSON file, formatted over multiple lines. I want to find objects that don't have a given property. The objects are guaranteed not to contain any further nested objects. Say the given property was "bad", then I would want to locate the value of"foo" in the second element in the following (but not in the first element).

{
  result: [
    {
      "foo" : {
        "good" : 1,
        "bad" : 0
      },
      "bar" : 123
    },
    {
      "foo" : {
        "good" : 1
      },
      "bar" : 123
    }
  ]
}

I know about multi-line regexes in Vim but I can't get anything that does what I want. Any pointers?

share|improve this question
4  
Do you have to use Vim for this? An actual JSON library would be a much better tool. – jwodder May 10 '11 at 18:18
I agree with jwodder. If I were you, I'd just plop the JSON data into a variable of my browser's JS console, and walk through it's contents, logging the index wherever the element is missing. – namuol May 10 '11 at 18:39
@jwodder, @namuoi, I appreciate that this is probably the sensible option. – Mr E May 10 '11 at 23:15

2 Answers

up vote 4 down vote accepted

Try the following:

/\v"foo"\_s*:\_s*\{%(%(\_[\t ,]"bad"\_s*:)@!\_.){-}\}

When you need to exclude something, you should look at negative look-aheads or look-behinds (latter is slower and unlike vim Perl/PCRE regular expressions do not support look-behinds except fixed-width (or a number of alternative fixed-width) ones).

share|improve this answer
Awesome, this is so crazy it actually works! Great skills. – Mr E May 10 '11 at 22:58

JSON is a context free grammar and as such is not regular. Unless you can give a much stricter set of rules to go on, no regex will be able to do what you want.

share|improve this answer
Sure, I'm not looking to parse arbitrary JSON, it's in exactly the format I've given above. The fields of foo do not contain any nested objects or braces of any kind, just key: number, key : number. I just want a greedy multi-line match of: opening character, anything that doesn't include a given word, closing character... – Mr E May 10 '11 at 19:20

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.