You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
466 B
26 lines
466 B
#include <iostream>
|
|
#include <iomanip>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
using json = nlohmann::json;
|
|
|
|
int main()
|
|
{
|
|
// a valid JSON text
|
|
auto valid_text = R"(
|
|
{
|
|
"numbers": [1, 2, 3]
|
|
}
|
|
)";
|
|
|
|
// an invalid JSON text
|
|
auto invalid_text = R"(
|
|
{
|
|
"strings": ["extra", "comma", ]
|
|
}
|
|
)";
|
|
|
|
std::cout << std::boolalpha
|
|
<< json::accept(valid_text) << ' '
|
|
<< json::accept(invalid_text) << '\n';
|
|
}
|
|
|