find number of occurrences of a string in a string c++ code example
Example: count occurrences of character in string c++
std::string s = "a_b_c";
size_t n = std::count(s.begin(), s.end(), '_'); // n=2
std::string s = "a_b_c";
size_t n = std::count(s.begin(), s.end(), '_'); // n=2