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.

Are blank characters like spaces, tabs and carriage returns ignored in json strings?

for example, is {a:b} equal to {a : b}?

share|improve this question
spaces aren't technically blank characters – Falmarri Nov 11 '10 at 1:18
1  
technically your brain should have parsed "blank" as "whitespace" – Mk12 Jun 27 '12 at 5:34

2 Answers

up vote 14 down vote accepted

Yes, blanks outside a double-quoted string literal are ignored in the syntax. Specifically, the ws production in the JSON grammar in RFC 4627 shows:

Insignificant whitespace is allowed before or after any of the six
structural characters.

   ws = *(
             %x20 /              ; Space
             %x09 /              ; Horizontal tab
             %x0A /              ; Line feed or New line
             %x0D                ; Carriage return
         )
share|improve this answer

In standard JSON, whitespace outside of string literals is ignored, as has been said.

However, since your question is tagged C#, I should note that there's at least one other case in C#/.NET where whitespace in JSON does matter.

The DataContractJsonSerializer uses a special __type property to support deserializing to the correct subclass. This property is required to be the first property in an object, and to have no whitespace between the property name and the preceeding {. See this previous thread: DataContractJsonSerializer doesn't work with formatted JSON?

At least, I have tested that the no-whitespace requirement is true as of .NET 4. Perhaps this will be changed in a future version to bring it more into line with the JSON standard?

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.