返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include<algorithm>
  5. using namespace std;
  6. int main(){
  7.     string str1="efkiusef";
  8.     cout<<str1.replace(5,3,"a")<<endl;  
  9.    
  10.     string str2="efkiusef";
  11.     cout<<str2.replace(str2.find("u"),1,"a")<<endl;  
  12.    
  13.     string str3="efkiusef";
  14.     replace(str3.begin(),str3.end(),'u','a');
  15.     cout<<str3<<endl;
  16.    
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

返回列表