omegastripes / VBA-JSON-parser

Backus-Naur Form JSON Parser based on RegEx for VBA
GNU General Public License v3.0
108 stars 44 forks source link

Dictionary Key is not escaped during serialization #11

Closed sfegsetsfe closed 4 years ago

sfegsetsfe commented 4 years ago

If we have a dictionary like this: myDictionary.Add "a""b", "xxx". Then the serialized JSON string will have this part {"a"b" : "xxx"} which will result in an error when parsed.