VBA-tools / VBA-JSON

JSON conversion and parsing for VBA
MIT License
1.74k stars 566 forks source link

How to delete an object in this VBA-JSON tool? #226

Open han31ye opened 2 years ago

han31ye commented 2 years ago

This tool works! However, could any experts give advise that how to delete an object in the Json? E.g. change {"a":1, "b":2, "c":3} to {"b":2, "c":3} by this tool? Many thanks!

houghtonap commented 2 years ago

VBA-JSON uses Microsoft Scripting.Dictionary to represent a JSON object. You must use the Remove method to delete a property key of the JSON object.

han31ye commented 2 years ago

Dear Sir, many thanks! i will try to study you idea....

han31ye commented 2 years ago

Dear Sir