程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> MSSQL >> 深刻C++ string.find()函數的用法總結

深刻C++ string.find()函數的用法總結

編輯:MSSQL

深刻C++ string.find()函數的用法總結。本站提示廣大學習愛好者:(深刻C++ string.find()函數的用法總結)文章只能為提供參考,不一定能成為您想要的結果。以下是深刻C++ string.find()函數的用法總結正文


#include <string>
#include <iostream>
using namespace std;
void main()
{

 ////find函數前往類型 size_type
string s("1a2b3c4d5e6f7g8h9i1a2b3c4d5e6f7g8ha9i");
string flag;
string::size_type position;
//find 函數 前往jk 在s 中的下標地位
position = s.find("jk");
 if (position != s.npos)  //假如沒找到,前往一個特殊的標記c++頂用npos表現,我這裡npos取值是4294967295,
 {
  cout << "position is : " << position << endl;
 }
 else
 {
  cout << "Not found the flag" + flag;
 } 


//find 函數 前往flag 中隨意率性字符 在s 中第一次湧現的下標地位
 flag = "c";
 position = s.find_first_of(flag);
 cout << "s.find_first_of(flag) is : " << position << endl;


 //從字符串s 下標5開端,查找字符串b ,前往b 在s 中的下標
 position=s.find("b",5);
 cout<<"s.find(b,5) is : "<<position<<endl;


//查找s 中flag 湧現的一切地位。
 flag="a";
 position=0;
 int i=1;
 while((position=s.find_first_of(flag,position))!=string::npos)
 {
  //position=s.find_first_of(flag,position);
  cout<<"position  "<<i<<" : "<<position<<endl;
  position++;
  i++;
 }


 //查找flag 中與s 第一個不婚配的地位
 flag="acb12389efgxyz789";
 position=flag.find_first_not_of (s);
 cout<<"flag.find_first_not_of (s) :"<<position<<endl;


 //反向查找,flag 在s 中最初湧現的地位
 flag="3";
 position=s.rfind (flag);
 cout<<"s.rfind (flag) :"<<position<<endl;
}

解釋:
1.假如string sub = ”abc“;
string s = ”cdeabcigld“;
s.find(sub) , s.rfind(sub) 這兩個函數,假如完整婚配,才前往婚配的索引,即:當s中含有abc三個持續的字母時,才前往以後索引。
s.find_first_of(sub),   s.find_first_not_of(sub),   s.find_last_of(sub),  s.find_last_not_of(sub)  這四個函數,查找s中含有sub中隨意率性字母的索引。
2.假如沒有查詢到,則前往string::npos,這是一個很年夜的數,其值不須要曉得。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved