- #include<bits/strc++.h>
- using namespace std;
- int main()
- {
- string str="Hello World!";
- cout<<str<<endl;
- cout<<"o'位置 由前往後"<<str.find('o')<<"\n";
- cout<<"'o'位置 由後往前"<<str.rfind('o')<<"\n";
- cout<<"\"llo\"位置 由前往後"<<str.find("llo")<<"\n";
- cout<<"'l'位置 (由前往後第4個位置"<<str.find('l', 4)<<"\n";
- int r=str.find('a');
- cout<<"'a'位置 由前往後"<<r<<endl;
- system("pause");
- return 0;
- }
複製代碼 |