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 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 196 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
...