返回列表 發帖
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main(){
  4. string str="Hello World!";
  5. cout<<str<<endl;
  6. cout<<"字元 'o'的索引位置(由前往後查找):"<<str.find('o')<<endl;
  7. cout<<"字元 'o'的索引位置(由後往前查找):"<<str.rfind('o')<<endl;
  8. cout<<"字串 \"llo\" 的索引位置(由前往後查找):"<<str.find("llo")<<endl;
  9. cout<<"字元 'l'的索引位置(由前往後自第4個位置開始查找):"<<str.find('l',4)<<endl;
  10. int res=str.find('a');
  11. cout<<"字元 'a' 的索引位置(由前往後查找):"<<res<<endl;
  12. system("pause");
  13. return 0;
  14. }
複製代碼

TOP

返回列表