- #include<bits/stdc++.h>
- using namespace std;
- int main()
- {
- string str="hello world";
- cout<<str<<endl;
- cout<<"字元'o'的索引位置由前往後找"<<str.find('o');
- cout<<"字元 'o' 的索引位置 (由後往前查找): "<<str.refind('o');
- cout<<"字串 \"llo\" 的索引位置 (由前往後查找): "<<str.find('llo');
- cout<<"字元 'l' 的索引位置 (由前往後自第4個位置開始查找):"<<str.find('1',4);
- int res=str.find('a') ;
- cout<<"字元 'a' 的索引位置 (由前往後查找): "<<res<<endl;
- return 0;
- }
複製代碼 |