#include #include using namespace std; using namespace System; int main() { string str = "Hello, World"; str.replace(7,5,"C++"); // str = "Hello, C++" cout << "置換した文字列は " << str << " です。" << endl; return 0; }