how to find all occurences of a character in a string C++ code example
Example 1: count occurrences of character in string c++
std::string s = "a_b_c";
size_t n = std::count(s.begin(), s.end(), '_'); // n=2
Example 2: lists occurrences of characters in the string c++
int d[27]={0};
for (int i = 0; i < str.length(); i++) //AABBCC
d[str[i] - 'A']++;
for (int i = 0; i < str.length(); i++)
if (d[str[i] - 'A'] != 0) {
cout << str[i] << " "<< d[str[i] - 'A'] << " "; //A 2 B 2 C 2
}