json/doc/examples/operator_literal_json_pointer.cpp

14 lines
261 B
C++
Raw Normal View History

2021-11-08 00:07:16 +03:00
#include <iostream>
#include <iomanip>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
int main()
{
json j = R"( {"hello": "world", "answer": 42} )"_json;
auto val = j["/hello"_json_pointer];
std::cout << std::setw(2) << val << '\n';
}