- #include<algorithm>
- using namespace std;
- int main()
- {
- string word = "hohohohu";
- cout << word.replace(0, 8, "Hello!") << endl;
- cout << word << endl;
- cout << word.replace(word.find("e"), 4, "ELLO") << endl;
- string word2 = "hohohuhu";
- replace(word2.begin(), word2.end(),'h','l');
- cout << word2 << endl;
- system("pause");
- return 0;
- }
複製代碼 |