2

So I need to do JSON documents parsing. I already parse xml documents with pugixml and now I need to parse JSON documents with the same\similar rules as XML ones.

Is there an opensourse (MIT or something similar) JSON parser with an API similar to pugixml?

beatgammit
  • 19,817
  • 19
  • 86
  • 129
Rella
  • 65,003
  • 109
  • 363
  • 636

1 Answers1

0

try my pugixml style wrapper for vjson (fastest json parser) http://code.google.com/r/denisovod-pugixmlstyle-vjson-wrapper/

sample use: http://code.google.com/r/denisovod-pugixmlstyle-vjson-wrapper/source/browse/dom_sample.cpp

Denis
  • 1
  • 1
    It it me or there's nothing on your links? The guy simply forked the vjson repo without modifying it. – Gui13 Jan 23 '12 at 13:14
  • compare: http://code.google.com/p/vjson/source/browse/main.cpp and http://code.google.com/r/denisovod-pugixmlstyle-vjson-wrapper/source/browse/dom_sample.cpp – Denis Jan 25 '12 at 12:01
  • not much was added but document/node types, with pugixml usage style. – Denis Jan 25 '12 at 12:04