Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

find all occurrences of a substring in a string c++

#include <string>
#include <iostream>

using namespace std;

int main()
{
    string s("hello hello");
    int count = 0;
    size_t nPos = s.find("hello", 0); // first occurrence
    while(nPos != string::npos)
    {
        count++;
        nPos = s.find("hello", nPos + 1);
    }

    cout << count;
};
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #find #occurrences #substring #string
ADD COMMENT
Topic
Name
9+7 =