How to count the white spaces in a string in C++

2 Answers

0 votes
#include <iostream>

int count_white_spaces_in_string(const char* s) {
    int white_spaces = 0;
    const char* p = s;
    
    while (*p != '\0') {
        if (*p == ' ' || *p == '\n' || *p == '\t' || *p == '\r') {
            white_spaces++;
        }
        p++;
    }

    return white_spaces;
}

int main() {
    const char* s = "C++ \r Programming \n Developer \t  ";
    
    std::cout << "White spaces = " << count_white_spaces_in_string(s) << std::endl;
}


   
/*
run:
   
White spaces = 10

*/
 

 



answered Oct 19, 2024 by avibootz
0 votes
#include <iostream>
#include <string>

int count_white_spaces_in_string(std::string str) {
    int white_spaces = 0;

    for (char ch : str) {
        if (ch == ' ' || ch == '\n' || ch == '\t' || ch == '\r') {
            white_spaces++;
        }
    }
    
    return white_spaces;
}

int main() {
    std::string str = "C++ \r Programming \n Developer \t  ";
    
    std::cout << "White spaces = " << count_white_spaces_in_string(str) << std::endl;
}


   
/*
run:
   
White spaces = 10

*/
 

 



answered Oct 19, 2024 by avibootz

Related questions

1 answer 262 views
1 answer 117 views
1 answer 126 views
1 answer 114 views
1 answer 95 views
1 answer 114 views
1 answer 85 views
...