void string_replace(){ std::string s = "a, b, c"; // 置換対象の文字列 std::string target = ", "; // 検索文字列 std::string replacement = "-"; // 置換文字列 cout<