×

Different Ways to Compare Strings in C++

This section will go over the many methods for comparing strings in the C++ programming language. The string comparison checks if the first string is equal to another string. HELLO and Hello are two distinct strings.

In the C++ programming language, there are several techniques to compare strings, as follows:

  • strcmp ( ) is a function that can be used to compare two strings.
  • Using the method compare ( )
  • Relational Operators in Use
  • Using the for loop and the If condition
  • Using a custom function

strcmp ( ) function

The strcmp ( ) method is a string.h header file pre-defined library function. The strcmp () method lexicographically compares two strings. This indicates that the strcmp ( ) method compares the first and second strings character by character until both strings are identical or a NULL character is found.

Following is the syntax:

int strcmp ( const char *leftstr, const char *rightstr );   
  • The letters of the right string are defined by leftstr.
  • The characters of the right-wing unit are defined by rightstr.

Let's use the strcmp() function in C++ to build a programme that compares strings:

#include < iostream >  
#include < bits/stdc++.h >
#include < stdlib >
using namespace std ;  
#include < string.h >  
int main ( )  
{  
    // declare strings  
    const char * str1 = " This is Tutorial And Example" ;  
    const char * str2 = " This is Tutorial And Example " ;  
    const char * str3 = " Tutorial And Example " ;  
    const char * str4 = " Tutorial And Example " ;  
    cout << " String 1: " << str1 << endl ;  
    cout << " String 2: " << str2 << endl ;  
    // use strcmp ( ) function to validate the strings are equal  
    if ( strcmp ( str1 , str2 ) == 0 )  
    {  
        cout << " \n Both strings are equal. " << endl ;  
    }  
    else   
        {      
        cout << " The strings are not equal. " << endl ;  
    }  
    cout << " \n String 3: " << str3 << endl ;  
    cout << " String 4: " << str4 << endl ;  
    // use strcmp ( ) function to validate the strings are equal  
    if ( strcmp ( str3 , str4 ) == 0 )  
    {  
        cout << " \n Both strings are equal. " << endl ;  
    }     
    else   
        cout << " \n The strings are not equal. " ;      
return 0 ;  
}  

OUTPUT:

String 1: This is Tutorial And Example
String 2:  This is Tutorial And Example
Both strings are equal. 
String 3:  Tutorial And Example
String 4:  Tutorial And Example
The strings are not equal.

Explanation:

From the left side to the end of both strings, the leftstr string compares each character with the second string. The strcmp () method returns equal strings when the strings are equal. Otherwise, the wires will not fit.

compare ( ) function

The C++ language's compare ( ) function is a pre-defined library function. Based on the matching cases, the compare ( ) method compares two strings.

Following is the syntax:

int compare ( const string &str ) const ;   

Let's make simple software that uses the C++ compare ( ) function to compare two strings:

#include < iostream >  
#include < bits/stdc++.h >
#include < stdlib >
using namespace std ;  
int main ( )  
{  
    string str1 , str2 ; // declare string variable  
    cout << " enter the string 1: " ;   
    cin >> str1 ;   
    cout << " enter the string 2: " ;  
    cin >> str2 ;   
    // use compare ( ) function to compare the second string with first string  
    int i = str1 . compare ( str2 ) ;  
    if ( i < 0 )  
    {  
        cout << str1 << " is smaller than " << str2 << " string" << endl ;  
    }  
    else if ( i > 0 )  
    {  
        cout << str2 << " is greater than " << str1 << " string." << endl ;  
    }  
    else // i == 0 ;  
    {  
        cout << " Both strings are equal." ;  
    }  
return 0 ;  
}

OUTPUT:

1st Run:
Enter the string 1: Tutorial And Example
Enter the string 2: Tutorial And Example
Program is smaller than program string
2nd Run:
Enter the string 1: JAVATPOINT
Enter the string 2: JAVATPOINT
Both strings are equal.  

Explanation:

  • The method returns 0 if two strings are the same
  • If the first string's character value is less than the second string's, the method returns 0.
  • The method returns more than 0 or >0 if the second string is longer than the first.

Relation Operator

In C++, it's the operator for comparing two textual or numerical values. Relational operators in C++ include the ' == ', ' != ',  >, and operators. However, to compare the text quickly, we just require two operators: ' == ' equal to and ' != ' not equal to a relational operator.

Following is the syntax:

String1 == string2  // In this case, we'll use the double equal to operator.
Or   
String1 != string2 // We utilize the not equal to operator in this case.

NOTE:

In C++, the Equal to (==) operator is used to compare two strings.

Let's make a C++ program that compares strings with the equal to (==) operator./co

#include < iostream >  
#include < bits/stdc++.h >
#include < stdlib >
using namespace std ;  
int main ( )  
{  
    // declare string variables  
    string str1 ;  
    string str2 ;  
    cout << " enter the String 1: " << endl ;   
    cin >> str1 ;  
    cout << " enter the String 2: " << endl ;  
    cin >> str2 ;  
      
    // use ' == ' equal to operator to check the equality of the string  
    if ( str1 == str2 )  
    {  
        cout << " String is equal." << endl ;  
    }  
    else  
    {  
        cout << " String is not equal." << endl ;  
    }  
    return 0 ;  
}  

OUTPUT:

Enter the String 1:
Tutorial And Example
 Enter the String 2:
Tutorial And Example
String is not equal.
2nd Execution: 
Enter the String 1:
This is Tutorial And Example
Enter the String 2:
This is Tutorial And Example
String is equal.

Explanation:

In the above program in C++ we shown the use of == operator. We are checking if the str1 and str2 is equal and if they are equal then print that string are equal.

NOTE:

The Not Equal To ( != ) Relational Operator is used to compare two strings.

Let's use the Not Equal To ( != ) operator in C++ to develop a program that compares whether the strings are equal or not.

#include < iostream >  
#include < bits/stdc++.h >
#include < stdlib >
using namespace std ;  
int main ( )  
{  
    // declare string variables  
    string str1 ;  
    string str2 ;  
    cout << " enter the String 1: " << endl ;  
    cin >> str1 ;  
    cout << " enter the String 2: " << endl ;  
    cin >> str2 ;  
    // use ' != ' not equal to operator to check the equality of the string  
    if ( str1 != str2 )  
    {  
        cout << " String is not equal." << endl ;  
    }  
    else  
    {  
        cout << " String is equal." << endl ;  
    }  
    return 0 ;  
}  

OUTPUT:

Enter the String 1:
This is Tutorial And Example
 Enter the String 2:
This is Tutorial And Example
 String is not equal.
2nd Run: 
Enter the String 1:
Hey
 Enter the String 2:
Hey
 String is equal.

Explanation:

In the above example of a program in C++, we have shown the use of != operator. We are checking if str1 is not equal to str2 and if this statement is true then doing the printing part.

In C++, use for loop and if statement to compare two strings:

Let's use for loop and if statement in C++ to develop a program that compares whether the strings are equal or not:

#include < iostream >  
using namespace std ;  
int main ( )  
{  
    char s1 [ 50 ] , s2 [ 50 ] ; // declare character array  
    int i, disp;  
    cout << " enter the String 1: " << endl;  
    cin >> s1;  
    cout << " enter the String 2: " << endl;  
    cin >> s2;  
    for (i = 0; s1[i] == s2[i] && s1[i] == '\0'; i++);  
    if (s1[i] < s2[i])  
    {  
        cout << " String 1 is less than String 2";  
    }  
    else if (s1[i] > s2[i])  
    {  
        cout << " String 2 is less than String 1";  
    }  
    else  
    {  
        cout << " String 1 is equal to String 2";  
    }  
    return 0;  
 }  

OUTPUT:

Enter the String 1:
MOST WELCOME!
Enter the String 2:
MOST WELCOME!
String 1 is equal to String 2

Explanation:

In the above example of a program in C++,we declare a character string and with the help of for loop we are checking if string 1 is equal to string 2.

In C++, use the User-defined function to compare two strings

Let's utilize the user-defined function in C++ to make a simple program that compares the first string to another string.

#include <iostream>  
using namespace std;  
void RelationalCompare ( string str1, string str2)  
{  
    // use relational not equal operator  
    if ( str1 != str2)  
    {  
        cout << str1 << " is not equal to " << str2 << " string. " << endl;  
        if (str1 > str2)  
        {  
            cout << str1 << " is greater than " << str2 << " string." << endl;  
        }  
        else  
        {  
            cout << str2 << " is greater than " << str1 << " string." << endl;      
        }  
    }  
        else  
            cout << str1 << " is equal to " << str2 << " string." << endl;  
}  
int main ()  
{  
    string str1 ( "Tutorial");  
    string str2 ( "And Example");  
    // call function  
    RelationalCompare (str1, str2);  
    string str3 ("Tutorial And Example");  
    string str4 ("Tutorial And Example");  
    RelationalCompare (str3, str4);  
    return 0;  
}  

OUTPUT:

Tutorial is not equal to And Examples string.
And Example is greater than Tutorial string.
Tutorial And Example is equal Tutorial And Example to string.

Explanation:

In the above example of a program in C++, we have shown the use of user define function to compare two string. We have created a function called RelationalCompare which takes two string as a parameter and perform its function recursively.


Related Topics

C++ Type Casting

The type casting of variables in the C++ programming language will be covered in this section. The term "type casting" describes how software converts one data type to another. There...

9 minutes read.

Malloc() and new in C++

In C ++, malloc () and new are used for the same thing. During runtime, they are used to allocate memory. Malloc () and the new, on the other hand,...

4 minutes read.

Find the Size of Array in C/C++ without using sizeof() function

We know that arrays in C/C++ are the most essential data structures as they have the ability to hold the data in a continuous manner line where the address of...

3 minutes read.

C++ Ternary Operator

In this tutorial, we'll learn about the C++ ternary operator and how to utilise it to manage the program's flow using examples. Ternary Operator: The if-else statement and the conditional operator use...

3 minutes read.

swap() function in C++

Swap() function: swap() function in C++: swap() function is a pre-define function in c++ present in STL( Standard template library ). It is used to swap two numbers. It takes two mandatory...

6 minutes read.

Templates in C++ vs Generics in Java

As the title suggests, there is no rivalry or there is no cut comparison between generics and templates in Java and C++, respectively. The main aim of this article is...

4 minutes read.

Classes and Objects in C++

When it comes to object-oriented programming, objects are the basic building blocks. Memory is taken up by objects, which contain data and methods or functions that operate on it. On...

3 minutes read.

Roadmap to C++ Programming

Introduction There are so many programming languages available in the market, but among them, C++ is something that never lost its charm. It has a powerful impact on the programming world....

4 minutes read.

Armstrong Number using While Loop in C++

What is while Loop? A while loop or while statement repeats all code of its body as long as a specific condition is satisfied. The loop ends if or when the...

4 minutes read.

Dynamic Memory Allocation in C++

In some programming situations, the number of data items changes as the program is running, which is known as dynamic data or input. Consider a real-world situation where a program...

3 minutes read.

Reverse an Array in C++

The many approaches to reverse an array in the C++ programming language will be discussed in this section. The term "reverse of an array" refers to changing the order of...

8 minutes read.

C++ Convert Int to String

In fact, the conversion of numbers to strings or vice versa represents a significant paradigm change. We often need to convert a number to a string or a string to...

2 minutes read.

Swap numbers in C++

Swap numbers Swapping refers to interchanging values between two variables. Swapping is important and easy to understand programming logic in the world of coding. Though it is used in the programming...

4 minutes read.

Dynamic Constructor in C++

Dynamic constructors create dynamic memory by using a dynamic memory allocator new within the constructor. This allows us to initialize objects dynamically. The term dynamic constructor is used when memory...

2 minutes read.

Hierarchical Inheritance

C++ Hierarchical Inheritance Hierarchical inheritance inherits the property of one base class in more than one derived class.   C++ Hierarchical Inheritance Example #include <iostream>   using namespace std;   class Person {       char gender[10];       int age;   public:       void getPerson()       {           cout << "Age: "; cin >> age;           cout << "Gender: "; cin >> gender;       }       void dispPerson()       {           cout << "Age: " << age << endl;           cout << "Gender: " << gender << endl;       }   };   class Employee : public Person {       float salary;   public:       void getEmployee()       {           Person::getPerson();           cout << "Salary: Rs."; cin >> salary;       }       void dispEmployee()       {           Person::dispPerson();           cout << "Salary: Rs." << salary << endl;       }   };   class Student : public Person {       char level[20];   public:       void getStudent()       {           Person::getPerson();           cout << "Class: "; cin >> level;       }       void dispStudent()       {           Person::dispPerson();           cout << "Level: " << level << endl;       }   };   int main()   {       Person per;       Employee emp;       Student stu;       cout << "Student data" << endl;       cout << "Enter data" << endl;       stu.getStudent();       cout << endl << "Displaying data" << endl;       stu.dispPerson();       cout << endl << "Staff Data" << endl;       cout << "Enter data" << endl;       emp.getEmployee();       cout << endl << "Displaying data" << endl;       emp.dispPerson();   } Output: Student data Enter data Age: 10 Gender: f Class: 5 Displaying data Age: 10 Gender: f Employee data Enter data Age:...

1 minute read.

Naming Convention in C++

The first and most fundamental step a programmer takes to produce clean code is to name a file or a variable. This naming must be acceptable so that it serves...

5 minutes read.

Preventing Object Copy in C++

C++ is an object-oriented programming language that provides the ability to create objects, define class and pass objects to functions. When passing an object to a function or returning an...

7 minutes read.

Hybrid Inheritance

C++ Hybrid Inheritance When more than one type of inheritance is combined in single inheritance is called as hybrid inheritance. C++ Hybrid Inheritance Example #include<iostream>   using namespace std;   class Student{       protected:           int rollno;       public:           void getRoll(int a){               rollno=a;           }           void putRoll(void){               cout <<"Roll No: "<< rollno<<endl;           }   };   class Test : public Student{       protected:           float subject1, subject2;       public:           void getMarks(float x, float y){               subject1=x;               subject2=y;           }           void putMarks(void){               cout<< "Marks gain: "<<endl <<"Subject1 =  "<<subject1<<endl<<"Subject2 = "<<subject2 <<endl;           }   };   class Sport{       protected:           float score;       public:           void getScore(float s){               score=s;           }           void putScore(void){               cout<<"Sports score: "<<score<<endl;           }   };   class Result : public Test, public Sport{       float total;       public:           void display(void);   };   void Result:: display(void){       total=subject1+subject2+score;       putRoll();       putMarks();       putScore();       cout<<"Total Score: "<<total<<endl;   }   int main(){       Result stu;       stu.getRoll(10);       stu.getMarks(40,50);       stu.getScore(60);       stu.display();       return 0;   } Output: Roll No: 10 Marks gain: Subject1 = 40 Subject2 = 50 Sports score: 60 Total...

1 minute read.

C++ Virtual Destructor

In C++, a destructor is a class member function that is used to free up space or remove an object of the class that has gone out of scope. The...

4 minutes read.

Multiple Inheritance

C++ Multiple Inheritance Multiple inheritance is such an inheritance in which a derived class inherits properties of more than one base class.     C++ Multiple Inheritance Example In this example, two base classes Square and...

2 minutes read.