I am looking for a Regex that allows me to validate json.
I am very new to Regex's and i know enough that parsing with Regex is bad but can it be used to validate?
|
|
(This regex was brought to you from the proving-the-naysayers-wrong department.) Yes, a complete regex validation is possible.Most modern regex implementations allow for recursive regexpressions, which can verify a complete JSON serialized structure. The json.org specification makes it quite straightforward.
It works quite well in PHP with the PCRE functions . Should work unmodified in Perl; and can certainly be adapted for other languages. Also it succeeds with the JSON test cases. Simpler RFC4627 verificationA simpler approach is the minimal consistency check as specified in RFC4627, section 6. It's however just intended as security test and basic non-validity precaution:
|
|||||||||||||||||||||
|
|
Because of the recursive nature of JSON (nested |
|||||||||||||
|
|
Yes, it's a common misconception that Regular Expressions can match only regular languages. In fact, the PCRE functions can match much more than regular languages, they can match even some non-context-free languages! Wikipedia's article on RegExps has a special section about it. JSON can be recognized using PCRE in several ways! @mario showed one great solution using named subpatterns and back-references. Then he noted that there should be a solution using recursive patterns
I'm using
Anyway, this should be treated as a "technology demonstration", not as a practical solution. In PHP I'll validate the JSON string with calling the |
|||||||||||||
|
|
You cannot use a single regular expression to describe every valid JSON string. Because JSON is an irregular language due to objects But you can use a series of regular expressions to check if a string is JSON. Here’s an example using Javascript:
This basically checks if the whole JSON string is either an array or an object, and when removing strings and numbers, only “empty” arrays and objects without values remain that can then be removed until only whitespace remains:
|
|||||
|
|
For "strings and numbers", I think that the partial regular expression for numbers:
should be instead:
since the decimal part of the number is optional, and also it is probably safer to escape the - symbol in [+-] since it has a special meaning between brackets... HTH |
|||||
|
|
Re: Regex to validate JSON , a trailing comma in a json array caused my perl 5.16 to hang, possibly because it kept backtracking. I had to add a backtrack-terminating directive:
This way, once it identifies a construct that is not 'optional' (* or ?), it shouldn't try backtracking over it to try to identify it as something else. |
||||
|
|
|
Forget it. Really. JSON lends itself to being parsed with regex even less than conformant XML does. |
|||
|
|
|
I created a Ruby implementation of Mario's solution, which does work: https://gist.github.com/2775709 |
|||
|