++
總述:以下所講的所有的string查詢函式,都有唯一的返回型別,那就是size_type,即乙個無符號整數(按列印出來的算)。若查詢成功,返回按查詢規則找到的第乙個字元或子串的位置;若查詢失敗,返回npos,即-1(列印出來為4294967295)。
1.fine()
原型://string (1)
size_type find (const basic_string& str, size_type pos = 0) const noexcept;
//c-string (2)
size_type find (const chart* s, size_type pos = 0) const;
//buffer (3)
size_type find (const chart* s, size_type pos, size_type n) const;
//character (4)
size_type find (chart c, size_type pos = 0) const noexcept;
示例:#include
#include
using namespace std;
int main()
應用舉例:
//找出字串str中所有的"abc"(輸出位置),若未找到,輸出"not find!"
#include
#include
using namespace std;
int main()
if (0 == num)
cout << "not find!";
cout << endl;
return 0;
}//執行結果:
//1 6 10 16 20 23 29
2.rfind()
原型://string (1)
size_type rfind (const basic_string& str, size_type pos = npos) const noexcept;
//c-string (2)
size_type rfind (const chart* s, size_type pos = npos) const;
//buffer (3)
size_type rfind (const chart* s, size_type pos, size_type n) const;
//character (4)
size_type rfind (chart c, size_type pos = npos) const noexcept;
說明:rfind()與find()很相似,差別在於查詢順序不一樣,rfind()是從指定位置起向前查詢,直到串首。例如,上例中的st1.rfind('a',7)一句,就是從st1的位置7(st1的最後乙個字元b)開始查詢字元a,第一次找到的是倒數第2個字元a,所以返回6。
關於rfind(),不再詳述,讀者可根據find()的示例,自行寫**學習rfind()。
3.find_first_of()
原型://string (1)
size_type find_first_of (const basic_string& str, size_type pos = 0) const noexcept;
//c-string (2)
size_type find_first_of (const chart* s, size_type pos = 0) const;
//buffer (3)
size_type find_first_of (const chart* s, size_type pos, size_type n) const;
//character (4)
size_type find_first_of (chart c, size_type pos = 0) const noexcept;
說明:在源串中從位置pos起往後查詢,只要在源串中遇到乙個字元,該字元與目標串中任意乙個字元相同,就停止查詢,返回該字元在源串中的位置;若匹配失敗,返回npos。
示例(僅給出部分原型的例項,對於其餘原型,相信讀者有能力仿照前邊關於find()的例項來自行寫**測試和學習):
#include
#include
using namespace std;
int main()
應用舉例:
using namespace std;
int main()
std::cout << str << '\n';
return 0;
}//執行結果:
//pl**s* r*pl*c* th* v*w*ls *n th*s s*nt*nc* by *st*r*sks
4.find_last_of()
原型://string (1)
size_type find_last_of (const basic_string& str, size_type pos = npos) const noexcept;
//c-string (2)
size_type find_last_of (const chart* s, size_type pos = npos) const;
//buffer (3)
size_type find_last_of (const chart* s, size_type pos, size_type n) const;
//character (4)
size_type find_last_of (chart c, size_type pos = npos) const noexcept;
說明:該函式與find_first_of()函式相似,只不過查詢順序是從指定位置向前,這裡僅簡單舉例,不再贅述,讀者可參考find_first_of()自行學習。
示例:#include
#include
using namespace std;
int main()
5.find_first_not_of()
原型://string (1)
size_type find_first_not_of (const basic_string& str, size_type pos = 0) const noexcept;
//c-string (2)
size_type find_first_not_of (const chart* s, size_type pos = 0) const;
//buffer (3)
size_type find_first_not_of (const chart* s, size_type pos, size_type n) const;
//character(4)
size_type find_first_not_of (chart c, size_type pos = 0) const noexcept;
說明:在源串中從位置pos開始往後查詢,只要在源串遇到乙個字元,該字元與目標串中的任意乙個字元都不相同,就停止查詢,返回該字元在源串中的位置;若遍歷完整個源串,都找不到滿 足條件的字元,則返回npos。
示例(僅簡單舉例,有了前邊的學習,相信讀者可以自己學習find_first_not_of()):
#include
#include
using namespace std;
int main()
將前面應用舉例中的fing_first_of()換成find_first_not_of(),就可以將字串中所有非母音字母換成*。請讀者自己驗證。
6.find_last_not_of()
原型://string (1)
size_type find_last_not_of (const basic_string& str, size_type pos = npos) const noexcept;
//c-string (2)
size_type find_last_not_of (const chart* s, size_type pos = npos) const;
//buffer (3)
size_type find_last_not_of (const chart* s, size_type pos, size_type n) const;
//character (4)
size_type find_last_not_of (chart c, size_type pos = npos) const noexcept;
說明:find_last_not_of()與find_first_not_of()相似,只不過查詢順序是從指定位置向前,這裡不再贅述,相信讀者可以自行學習。
C 中find函式用法
c 中stl裡提供了許多字串操作的函式,下面是字串查詢方面的部分函式用法簡介 1.find 查詢第一次出現的目標字串 include includeusing namespace std int main string s1 abcdef string s2 de int ans s1.find s...
C 中的find函式
我們在c 中使用的find函式一般都是algorithm庫裡面提供的或者 是stl容器裡面的find函式。今天就來總結一下他們的使用與區別 1.容器裡面的find函式 stl裡面容器除了vector其他常見的容器都有自己實現成員函式find,例如string中的find函式,string的find ...
c 中find函式的用法
1,返回字元 字串 在原來字串的中首次出現的下標位置 例 string s 1a2b3c4d5e6f7g8h9i1a2b3c4d5e6f7g8ha9i position s.find jk 2,返回flag 中任意字元 在s 中第一次出現的下標位置 flag c position s.find fi...