3

Is there any existing JSON parser which can be used from VB6?

I could obviously write my own parser, but I don't want to reinvent the wheel if I don't have to.

Thanks!

Matthew Cole
  • 1,329
  • 2
  • 18
  • 30
  • 1
    Possible duplicate of [Is There a JSON Parser for VB6 / VBA?](https://stackoverflow.com/questions/2782076/is-there-a-json-parser-for-vb6-vba) – StayOnTarget Sep 12 '19 at 11:21

1 Answers1

7

I would look at VB-JSON:

VB-JSON is a Visual Basic 6 class library for parsing and emitting JSON (Javascript Object Notation) and can handle nested arrays and objects in the data. It does not rely on the JScript engine for parsing.

Andrew Hare
  • 344,730
  • 71
  • 640
  • 635