Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,938 questions

51,875 answers

573 users

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

3 Answers

0 votes
#include <iostream>
#include <cstring>
 
int main() {
    std::string s1 = "C++ PROGRAMMING";
    std::string s2 = "c++ programming";
     
    if (strcasecmp(s1.c_str(), s2.c_str()) == 0) {
        std::cout << "s1 == s2";
    } else {
        std::cout << "s1 != s2";
    }
}

 
 
/*
run:
 
s1 == s2
 
*/

 



answered May 9, 2021 by avibootz
edited Aug 23, 2024 by avibootz
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(), s1.size()) == 0) {
        std::cout << "s1 == s2";
    } else {
        std::cout << "s1 != s2";
    }
}

 
 
/*
run:
 
s1 == s2
 
*/

 



answered May 9, 2021 by avibootz
edited Aug 23, 2024 by avibootz
0 votes
#include <iostream>
#include <algorithm>
 
std::string toLower(std::string s) {
    transform(s.begin(), s.end(), s.begin(),
               [](unsigned char ch){ return std::tolower(ch); });
    return s;
}
 
int main() {
    std::string s1 = "C++ PROGRAMMING";
    std::string s2 = "c++ programming";
     
     if (toLower(s1) == toLower(s2)) {
        std::cout << "s1 == s2";
    } else {
        std::cout << "s1 != s2";
    }
}

 
 
/*
run:
 
s1 == s2
 
*/

 



answered May 9, 2021 by avibootz
edited Aug 23, 2024 by avibootz

Related questions

1 answer 161 views
1 answer 108 views
108 views asked Aug 23, 2024 by avibootz
1 answer 116 views
1 answer 104 views
2 answers 122 views
1 answer 103 views
1 answer 92 views
...