- #include<iostream>
- #include<cstdlib>
- #include<string>
- using namespace std;
- int main()
- {
- string s="yomama";
- cout<<"the string:"<<s<<endl;
- cout<<s.replace(3,4,"other")<<endl;
-
- string s2="yomama";
- cout<<"the string:"<<s2<<endl;
- cout<<s2.replace(s2.find("ma"),4," ")<<endl;
-
- string s3="yomama";
- cout<<"the string:"<<s3<<endl;
- cout<<s3.replace(s3.begin(3),s3.end(),'a','a')<<endl;
-
- system("pause");
- return 0;
- }
-
複製代碼 |