Skip to content

Latest commit

 

History

History
109 lines (85 loc) · 1.96 KB

remove.md

File metadata and controls

109 lines (85 loc) · 1.96 KB

jsoncons::jsonpointer::remove

Removes a json element.

#include <jsoncons_ext/jsonpointer/jsonpointer.hpp>

template<class Json>
void remove(Json& target, const Json::string_view_type& location); (1)

template<class Json>
void remove(Json& target, const Json::string_view_type& location, 
            std::error_code& ec);                              (2)

Removes the value at the location specifed by location.

Parameters

target JSON value
location JSON Pointer
ec out-parameter for reporting errors in the non-throwing overload

Return value

None

Exceptions

(1) Throws a jsonpointer_error if remove fails.

(2) Sets the out-parameter ec to the jsonpointer_error_category if remove fails.

Examples

Remove an object member

#include <jsoncons/json.hpp>
#include <jsoncons_ext/jsonpointer/jsonpointer.hpp>

namespace jsonpointer = jsoncons::jsonpointer;

int main()
{
    auto target = json::parse(R"(
        { "foo": "bar", "baz" : "qux"}
    )");

    std::error_code ec;
    jsonpointer::remove(target, "/baz", ec);
    if (ec)
    {
        std::cout << ec.message() << std::endl;
    }
    else
    {
        std::cout << target << std::endl;
    }
}

Output:

{"foo":"bar"}

Remove an array element

#include <jsoncons/json.hpp>
#include <jsoncons_ext/jsonpointer/jsonpointer.hpp>

using jsoncons::json;
namespace jsonpointer = jsoncons::jsonpointer;

int main()
{
    auto target = json::parse(R"(
        { "foo": [ "bar", "qux", "baz" ] }
    )");

    std::error_code ec;
    jsonpointer::remove(target, "/foo/1", ec);
    if (ec)
    {
        std::cout << ec.message() << std::endl;
    }
    else
    {
        std::cout << target << std::endl;
    }
}

Output:

{"foo":["bar","baz"]}