tags:

views:

542

answers:

1

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!

+4  A: 

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