[M1 Mac, Monterey 12.6.3, clang 13.0.0, FLTK 1.3.8, ChatGPT Plus, NO IDE]
ChatGPTから得られた回答を一旦JSONに格納してから取り出すという手順が間違いの元でした。
回答の生データをそのままFl_Text_Displayに表示してから、JSONに格納するようにしました。
これで可読性が大幅に改善しました。
ただJSONに収まった時点でprintf(“%s\n”,str)のようなコード中の改行文字とエスケープシーケンスとしてリテラル化した改行文字が混在してしまうので完全な復元ができない、という問題を抱えたままです。
自分で簡単なパーサー(解析器)を作るしかないのかもしれません。
vector<string> getCode(string str){
vector<string> codes;
size_t start_pos = str.find("```");
while (start_pos != string::npos) {
size_t end_pos = str.find("```", start_pos + 1);
if (end_pos != string::npos) {
code = str.substr(start_pos + 3, end_pos - start_pos - 3);
size_t start_pos2 = code.find("#");
code.erase(0, start_pos2);
codes.push_back(code);
cout << "getCode内code:\n" << code << endl;
str.erase(start_pos, end_pos - start_pos + 3);
cout << "getCode内str:\n" << str << endl;
}
start_pos = str.find("```");
}
return codes;
}