返回列表 發帖
  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     string str="hello world";
  6.     cout<<str<<endl;
  7.     cout<<"字元'o'的索引位置由前往後找"<<str.find('o');
  8.     cout<<"字元 'o' 的索引位置 (由後往前查找): "<<str.refind('o');
  9.     cout<<"字串 \"llo\" 的索引位置 (由前往後查找): "<<str.find('llo');
  10.     cout<<"字元 'l' 的索引位置 (由前往後自第4個位置開始查找):"<<str.find('1',4);
  11.     int res=str.find('a') ;
  12.     cout<<"字元 'a' 的索引位置 (由前往後查找): "<<res<<endl;
  13.     return 0;
  14. }
複製代碼

TOP

返回列表