美文网首页
母串中寻找字串

母串中寻找字串

作者: 带着白卡去旅行 | 来源:发表于2018-09-13 22:06 被阅读10次

    find顺搜索
    rfind逆搜索
    string::npos表示母串中不含字串
    index表示位置

    #include<iostream>
    #include<iomanip>
    #include<string>
    
    using namespace std;
    
    void main()
    
    {
        string text = "had had sdsdsdhad";
        string word = "had";
    
        int count = 0;
        for (int index = 0; (index = text.find(word, index)) != string::npos; index = word.length() + index, count++);
        
        cout << count;
    
        system("pause");
            return;
    }
    

    相关文章

      网友评论

          本文标题:母串中寻找字串

          本文链接:https://www.haomeiwen.com/subject/zenggftx.html