Are blank characters like spaces, tabs and carriage returns ignored in json strings?
for example, is {a:b} equal to {a : b}?
|
|
Yes, blanks outside a double-quoted string literal are ignored in the syntax. Specifically, the
|
|||
|
|
|
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 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? |
|||
|
|