Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jsoncpp ライブラリを使用して、json 構造を解析および作成しています。次の構文を変換することは可能ですか
jsonText["name1"]["name2"] = "Testmessage";
このようなものに
jsonText["name1.name2"] = "Testmessage";
となることによって
jsonText["name1"]["name2"] = jsonText["name1.name2"];
よろしく