- #include<iostream>
- #include<cstdlib>
- #include<string>
- #include<algorithm>
- using namespace std;
- int main(){
- string str1="qwertyuiop";
- cout<<str1.replace(5,3,"abc")<<endl;
-
- string str2="qwertyuiop";
- cout<<str2.replace(str2.find("u"),1,"p")<<endl;
-
- string str3="qwertyuiop";
- replace(str3.begin(),str3.end(),'q','z');
- cout<<str3<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |