關於string類中find函數的講解


以下所講的所有的string查找函數,都有唯一的返回類型,那就是size_type,即一個無符號整數(按打印出來的算)。若查找成功,返回按查找規則找到的第一個字符或子串的位置;若查找失敗,返回npos,即-1(打印出來為4294967295)。

(1)string::find函數

#include<iostream>
#include<string>
using namespace std;
int main()
{
    //測試size_type find (charT c, size_type pos = 0) const noexcept;
    string st1("babbabab");
    cout << st1.find('a') << endl;//1   由原型知,若省略第2個參數,則默認從位置0(即第1個字符)起開始查找
    cout << st1.find('a', 0) << endl;//1
    cout << st1.find('a', 1) << endl;//1   
    cout << st1.find('a', 2) << endl;//4   在st1中,從位置2(b,包括位置2)開始,查找字符a,返回首次匹配的位置,若匹配失敗,返回npos
    cout << st1.rfind('a',7) << endl;//6   關於rfind,后面講述
    cout << st1.find('c', 0) << endl;//4294967295
    cout << (st1.find('c', 0) == -1) << endl;//1
    cout << (st1.find('c', 0) == 4294967295) << endl;//1   兩句均輸出1,原因是計算機中-1和4294967295都表示為32個1(二進制)
    cout << st1.find('a', 100) << endl;//4294967295   當查找的起始位置超出字符串長度時,按查找失敗處理,返回npos
    //測試size_type find (const basic_string& str, size_type pos = 0) const noexcept;
    string st2("aabcbcabcbabcc");
    string str1("abc");
    cout << st2.find(str1, 2) << endl;//6   從st2的位置2(b)開始匹配,返回第一次成功匹配時匹配的串(abc)的首字符在st2中的位置,失敗返回npos
    //測試size_type find (const charT* s, size_type pos = 0) const;
    cout << st2.find("abc", 2) << endl; //6   同上,只不過參數不是string而是char*
    //測試size_type find (const charT* s, size_type pos, size_type n) const;
    cout << st2.find("abcdefg", 2, 3) << endl;//6   取abcdefg得前3個字符(abc)參與匹配,相當於st2.find("abc", 2)
    cout << st2.find("abcbc", 0, 5) << endl;//1   相當於st2.find("abcbc", 0)
    cout << st2.find("abcbc", 0, 6) << endl;//4294967295   第3個參數超出第1個參數的長度時,返回npos
    return 0;
}

(2)string::rfind()函數

 rfind()與find()很相似,差別在於查找順序不一樣,rfind()是從指定位置起向前查找,直到串首。例如,上例中的st1.rfind('a',7)一句,就是從st1的位置7(st1的最后一個字符b)開始查找字符a,第一次找到的是倒數第2個字符a,所以返回6。

(3)string::find_first_of()函數

在源串中從位置pos起往后查找,只要在源串中遇到一個字符,該字符與目標串中任意一個字符相同,就停止查找,返回該字符在源串中的位置;若匹配失敗,返回npos。

#include<iostream>
#include<string>
using namespace std;
int main()
{
    //測試size_type find_first_of (charT c, size_type pos = 0) const noexcept;
    string str("babccbabcc");
    cout << str.find('a', 0) << endl;//1
    cout << str.find_first_of('a', 0) << endl;//1   str.find_first_of('a', 0)與str.find('a', 0)
    //測試size_type find_first_of (const basic_string& str, size_type pos = 0) const noexcept;
    string str1("bcgjhikl");
    string str2("kghlj");
    cout << str1.find_first_of(str2, 0) << endl;//從str1的第0個字符b開始找,b不與str2中的任意字符匹配;再找c,c不與str2中的任意字符匹配;再找g,
                                                //g與str2中的g匹配,於是停止查找,返回g在str1中的位置2
    //測試size_type find_first_of (const charT* s, size_type pos, size_type n) const;
    cout << str1.find_first_of("kghlj", 0, 20);//2   盡管第3個參數超出了kghlj的長度,但仍能得到正確的結果,可以認為,str1是和"kghlj+亂碼"做匹配
    return 0;
}

(4)string::find_last_of()函數

該函數與find_first_of()函數相似,只不過查找順序是從指定位置向前

#include<iostream>
#include<string>
using namespace std;
int main()
{
    //測試size_type find_last_of (const charT* s, size_type pos = npos) const;
    //目標串中僅有字符c與源串中的兩個c匹配,其余字符均不匹配
    string str("abcdecg");
    cout << str.find_last_of("hjlywkcipn", 6) << endl;//5   從str的位置6(g)開始想前找,g不匹配,再找c,c匹配,停止查找,返回c在str中的位置5
    cout << str.find_last_of("hjlywkcipn", 4) << endl;//2   從str的位置4(e)開始想前找,e不匹配,再找d,d不匹配,再找c,c匹配,停止查找,
                                                      //    返回c在str中的位置5
    cout << str.find_last_of("hjlywkcipn", 200) << endl;//5   當第2個參數超出源串的長度(這里str長度是7)時,不會出錯,相當於從源串的最后一
                                                        //    個字符起開始查找
    return 0;
}

(5)string::find_first_not_of()函數

在源串中從位置pos開始往后查找,只要在源串遇到一個字符,該字符與目標串中的任意一個字符都不相同,就停止查找,返回該字符在源串中的位置;若遍歷完整個源串,都找不到滿足條件的字符,則返回npos。

#include<iostream>
#include<string>
using namespace std;
int main()
{
    //測試size_type find_first_not_of (const charT* s, size_type pos = 0) const;
    string str("abcdefg");
    cout << str.find_first_not_of("kiajbvehfgmlc", 0) << endl;//3   從源串str的位置0(a)開始查找,目標串中有a(匹配),再找b,b匹配,再找c,c匹配,
                                                              //    再找d,目標串中沒有d(不匹配),停止查找,返回d在str中的位置3
    return 0;
}

(6)string::find_last_not_of()函數

find_last_not_of()與find_first_not_of()相似,只不過查找順序是從指定位置向前

轉自:https://www.cnblogs.com/zpcdbky/p/4471454.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM