Closed eomonteiro closed 6 years ago
The brackets are the JSON representation of an array.
If you have only a single object inside the brackets, you can get it through the items
property:
Set jsonArrayObject = json.Parse(jsonArrString)
Set myObject = jsonArrayObject.items(0)
Response.Write myObject("my_property")
I would like to know how to remove the brackets in JSONarray, since I thank you