在C語言中,要?jiǎng)h除JSON元素,需要使用相關(guān)的庫函數(shù)來完成操作。接下來,我將為您介紹如何使用C語言刪除JSON元素。
#include#include #include #include "cJSON.h" int main() { char *json_str = "{\"name\":\"Tom\",\"age\":25}"; cJSON *json = cJSON_Parse(json_str); cJSON_DeleteItemFromObject(json, "age"); char *new_json_str = cJSON_Print(json); printf("刪除age后的JSON字符串:%s\n", new_json_str); free(new_json_str); cJSON_Delete(json); return 0; }
如上所示,需要先將JSON字符串解析成cJSON類型的對(duì)象。然后,使用
值得注意的是,在使用