返回列表 發帖
  1. #include<algorithm>
  2. using namespace std;

  3. int main()
  4. {
  5.     string word = "hohohohu";
  6.     cout << word.replace(0, 8, "Hello!") << endl;
  7.     cout << word << endl;
  8.     cout << word.replace(word.find("e"), 4, "ELLO") << endl;

  9.     string word2 = "hohohuhu";
  10.     replace(word2.begin(), word2.end(),'h','l');
  11.     cout << word2 << endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

返回列表