Once a JSON value exists, its content can be changed: elements can be added, replaced, merged, and removed. This page gives an overview of the available operations. For read access, see element access.
New elements are appended to an array with push_back or constructed in place with emplace_back. If the value is #!json null, it is converted to an array first, so these functions can also be used to build an array from scratch.
json j; // null j.push_back(1); // [1] j.push_back(2); // [1,2] j.emplace_back(3); // [1,2,3] // operator+= is a shorthand for push_back j += 4; // [1,2,3,4]
The most common way to add or replace a member is operator[], which inserts the key if it does not exist yet:
json j; j["name"] = "Mary"; // {"name":"Mary"} j["name"] = "John"; // {"name":"John"} (replaced)
emplace inserts a member only if the key is not already present, and reports whether the insertion happened — useful for “add if absent” semantics.
To merge one object into another, update copies all members from another object, overwriting existing keys (similar to Python's dict.update). This is the idiomatic way to combine two objects.
??? example
```cpp --8<-- "examples/update.cpp" ``` Output: ```json --8<-- "examples/update.output" ```
For a recursive merge that follows RFC 7386, see JSON Merge Patch. To apply a sequence of well-defined edit operations, see JSON Patch.
Elements are removed with erase, which accepts an object key, an array index, or an iterator. clear empties a value while keeping its type, and operator[] combined with assignment can overwrite a value entirely.
json j = {{"a", 1}, {"b", 2}, {"c", 3}}; j.erase("b"); // {"a":1,"c":3} json a = {1, 2, 3, 4}; a.erase(1); // [1,3,4] (erase by index)
push_back / emplace_back - append to an arrayemplace - insert into an object if the key is absentupdate - merge objectserase / clear - remove elements