I\'m trying to parse a JSON string encoded with PHP and sent over TCP to a C++ client.
My JSON strings are like this:
{\"1\":{\"name\":\"MIKE\",\"sur
You can also read from a stringstream:
std::stringstream sstr(stringJson); Json::Value json; sstr >> json;