11

I'm implementing some kind of parser and I need to locate and deserialize json object embedded into other semi-structured data. I used regexp:

\\{\\s*title.*?\\}

to locate object

{title:'Title'}

but it doesn't work with nested objects because expression matches only first found closing curly bracket. For

{title:'Title',{data:'Data'}}

it matches

{title:'Title',{data:'Data'}

so string becomes invalid for deserialization. I understand that there's a greedy business coming into account but I'm not familiar with regexps. Could you please help me to extend expression to consume all available closing curly brackets.

Update:

To be clear, this is an attempt to extract JSON data from semi-structured data like HTML+JS with embedded JSON. I'm using GSon JAVA lib to actually parse extracted JSON.

8
  • Watch out for "OMG, don't use Regex it's eevil!!" Commented Jul 22, 2013 at 11:30
  • .. but in all seriousness - why? What's the data to hand, and what do you need to achieve with it Commented Jul 22, 2013 at 11:30
  • 3
    @ViktorStolbin There are premade JSON parsing libraries. Also, since JSON isn't a regular language, it cannot be correctly parsed with regular expressions (just like HTML). Commented Jul 22, 2013 at 11:32
  • You really can't do this easily with regex. JSON parser examples are aplenty out there; if possible just pick up one and you would be much better off. Commented Jul 22, 2013 at 11:33
  • 1
    @ViktorStolbin: I know you aren't re-inventing the JSON lib. What I'm trying to say here is that this is a two part activity: 1. Extract JSON string out of the semi-structured data 2. Pass that valid piece of JSON string to GSON to parse it into Java constructs. For the first, regex is not sufficient since it can't perform "brace matching" hence the suggestions. Commented Jul 22, 2013 at 11:55

4 Answers 4

17

This recursive Perl/PCRE regular expression should be able to match any valid JSON or JSON5 object, including nested objects and edge cases such as braces inside JSON strings or JSON5 comments:

/(\{(?:(?>[^{}"'\/]+)|(?>"(?:(?>[^\\"]+)|\\.)*")|(?>'(?:(?>[^\\']+)|\\.)*')|(?>\/\/.*\n)|(?>\/\*.*?\*\/)|(?-1))*\})/

Of course, that's a bit hard to read, so you might prefer the commented version:

m{
  (                               # Begin capture group (matching a JSON object).
    \{                              # Match opening brace for JSON object.
    (?:                             # Begin non-capturing group to contain alternations.
      (?>[^{}"'\/]+)                  # Match a non-empty string which contains no braces, quotes or slashes, without backtracking.
    |                               # Alternation; next alternative follows.
      (?>"(?:(?>[^\\"]+)|\\.)*")      # Match a double-quoted JSON string, without backtracking.
    |                               # Alternation; next alternative follows.
      (?>'(?:(?>[^\\']+)|\\.)*')      # Match a single-quoted JSON5 string, without backtracking.
    |                               # Alternation; next alternative follows.
      (?>\/\/.*\n)                    # Match a single-line JSON5 comment, without backtracking.
    |                               # Alternation; next alternative follows.
      (?>\/\*.*?\*\/)                 # Match a multi-line JSON5 comment, without backtracking.
    |                               # Alternation; next alternative follows.
      (?-1)                           # Recurse to most recent capture group, to match a nested JSON object.
    )*                              # End of non-capturing group; match zero or more repetitions of this group.
    \}                              # Match closing brace for JSON object.
  )                               # End of capture group (matching a JSON object).
}x
Sign up to request clarification or add additional context in comments.

7 Comments

Is this a serious answer to the question?
Of course it's a serious answer! This regular expression does exactly what the question asked for: locate and extract a JSON object embedded inside non-JSON data, handling nested objects and edge cases correctly. The match can then be used with a JSON parser to deserialize the JSON object.
I'm not very good with the regex, but this looked so weird. Anyway, thanks for the confirmation.
I just had a need to use this regular expression myself, but I needed to match many JSON objects buried in a log file that was otherwise plain text. It worked perfectly, I just had to add the "/g" flag to get all the matches back instead of a single match.
This is an excellent answer and it works really good in js. Unfortunately it does not work in .Net and thus Powershell because of the last recursive capture group. So if possible I would really appreciate a hint on how to simplify this regex.
|
7

As others have suggested, a full-blown JSON parser is probably the way to go. If you want to match the key-value pairs in the simple examples that you have above, you could use:

(?<=\{)\s*[^{]*?(?=[\},])

For the input string

{title:'Title',  {data:'Data', {foo: 'Bar'}}}

This matches:

 1. title:'Title'
 2. data:'Data'
 3. foo: 'Bar'

1 Comment

I should try it! Thank you!
3

Thanks to @Sanjay T. Sharma that pointed me to "brace matching" because I eventually got some understanding of greedy expressions and also thanks to others for saying initially what I shouldn't do. Fortunately it turned out it's OK to use greedy variant of expression

\\{\s*title.*\\}

because there is no non-JSON data between closing brackets.

Comments

1

This is absolutely horrible and I can't believe I'm actually putting my name to this solution, but could you not locate the first { character that is in a Javascript block and attempt to parse the remaining characters through a proper JSON parsing library? If it works, you've got a match. If it doesn't, keep reading until the next { character and start over.

There are a few issues there, but they can probably be worked around:

  • you need to be able to identify Javascript blocks. Most languages have HTML to DOM libraries (I'm a big fan of Cyberneko for Java) that makes it easy to focus on the <script>...</script> blocks.
  • your JSON parsing library needs to stop consuming characters from the stream as soon as it spots an error, and it needs to not close the stream when it does.

An improvement would be, once you've found the first {, to look for the matching } one (a simple counter that is incremented whenever you find a { and decremented when you find a } should do the trick). Attempt to parse the resulting string as JSON. Iterate until it works or you've ran out of likely blocks.

This is ugly, hackish and should never make it to production code. I get the impression that you only need it for a batch-job, though, which is why I'm even suggesting it.

1 Comment

Right. this is ugly and not straightforward to implement.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.