parseJSONObject()

Input / Files

Description

Parses a JSON string and returns a JSONValue object.

Syntax

JSONValue parseJSONObject(std::string s)

Parameters

NameTypeDescription
sstd::stringJSON string to parse

Returns

JSONValue

Related

Under the Hood

From Processing.h:

static JSONValue parseJSONObject(const std::string& s) { return parseJSON(s); }