08-22-2018 06:25 AM
Hello,
I'm currently using https://github.com/eklam/VbsJson to parse JSON responses that I get from a database. However, I wondered if anyone knew of a more recent/performant library for doing this please?
Thanks!
Solved! Go to Solution.
08-25-2018 06:52 PM
Hi Martin,
For VBS, that version is the best I know, The only thing I have found with that version, is that it does not handle when a array is empty, it will throw an error. I have attached the one with the fix for that.
Also would suggest strongly that you get a json viewer that allows you to see what the json object, actually looks like. You can get one off of github, called jsonviewer, There also exists good one with Visual Studio, and Notepad++ has one as well.
The weakness with the VBS one is that you have to know the format in the object to parse it once you have the object back. That is where a tool to allow you to see the json tree helps alot.
Paul
08-31-2018 02:33 AM
Great, thank you for that Paul.