I am using a vba json parser : https://github.com/VBA-tools/VBA-JSON . I want to loop over the elements in the B array but I am unsure how to do this. e.g.
Set Json = JsonConverter.ParseJSON("{""a"":123,""b"":[1,2,3,4],""c"":{""d"":456}}")
Run Code Online (Sandbox Code Playgroud)
If you want to get back the number of elements in B how do you do this?
You get back the actual value by doing the following : Json("a")