json/docs/examples/count__object_t_key_type.cpp

19 lines
465 B
C++
Raw Normal View History

#include <iostream>
#include <nlohmann/json.hpp>
2015-06-28 19:32:09 +02:00
using json = nlohmann::json;
2015-06-28 19:32:09 +02:00
int main()
{
// create a JSON object
json j_object = {{"one", 1}, {"two", 2}};
2020-02-26 06:44:08 +01:00
// call count()
2015-06-28 19:32:09 +02:00
auto count_two = j_object.count("two");
auto count_three = j_object.count("three");
// print values
std::cout << "number of elements with key \"two\": " << count_two << '\n';
std::cout << "number of elements with key \"three\": " << count_three << '\n';
}