How to compare part of two strings ignoring the case in C++

1 Answer

0 votes
#include <iostream>
#include <cstring>
 
int main() {
    std::string s1 = "C++ Programming";
    std::string s2 = "C++ PrograMMING";
     
    if (strncasecmp(s1.c_str(), s2.c_str(), 5) == 0) {
        std::cout << "s1 == s2";
    } else {
        std::cout << "s1 != s2";
    }
 
    return 0;
}
 
 
 
 
/*
run:
 
s1 == s2
 
*/

 



answered May 9, 2021 by avibootz

Related questions

3 answers 228 views
1 answer 142 views
142 views asked Aug 23, 2024 by avibootz
1 answer 140 views
1 answer 132 views
2 answers 154 views
1 answer 130 views
1 answer 116 views
...