Esta seção discutirá as diferentes maneiras de comparar as strings fornecidas na linguagem de programação C++. A comparação da string determina se a primeira string é igual a outra string ou não. Exemplo: HELLO e Hello são duas strings diferentes.
Existem diferentes maneiras de comparar as strings na linguagem de programação C++, como segue:
- Usando a função strcmp()
- Usando a função comparar()
- Usando Operador Relacional
- Usando o loop For e a instrução If
- Usando função definida pelo usuário
Função strcmp()
O strcmp() é uma função de biblioteca predefinida do string.h arquivo de cabeçalho. A função strcmp() compara duas strings em uma base lexicográfica. Isso significa que a função strcmp() começa a comparar a primeira string com a segunda string, caractere por caractere, até que todos os caracteres em ambas as strings sejam iguais ou um caractere NULL seja encontrado.
Sintaxe
int strcmp ( const char *leftstr, const char *rightstr );
Parâmetros:
esquerda: Ele define os caracteres da string esquerda.
direita: Ele define os caracteres da string certa.
Retorna:
A string leftstr compara cada caractere com a segunda string do lado esquerdo até o final de ambas as strings. E, se ambas as strings forem iguais, a função strcmp() retornará strings iguais. Caso contrário, as strings não são iguais.
Vamos criar um programa para comparar strings usando a função strcmp() em C++.
Programa1.cpp
#include using namespace std; #include int main () { // declare strings const char *str1 = ' Welcome to JavaTpoint'; const char *str2 = ' Welcome to JavaTpoint'; const char *str3 = ' JavaTpoint'; const char *str4 = ' Javatpoint'; 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 << ' Both strings are equal. ' << endl; } else { cout << ' The strings are not equal. ' << endl; } cout << ' String 3: ' << str3 << endl; cout << ' String 4: ' << str4 << endl; // use strcmp() function to validate the strings are equal if (strcmp (str3, str4) == 0) { cout << ' Both strings are equal. ' << endl; } else cout << ' The strings are not equal. '; return 0; }
Saída
String 1: Welcome to JavaTpoint String 2: Welcome to JavaTpoint Both strings are equal. String 3: JavaTpoint String 4: Javatpoint The strings are not equal.
função comparar()
A função compare() é uma função de biblioteca predefinida da linguagem C++. A função compare() compara duas strings fornecidas e retorna os seguintes resultados com base nos casos correspondentes:
- Se ambas as strings forem iguais, a função retornará 0.
- Se o valor do caractere da primeira string for menor que o da segunda string, a função retornará<0.< li>
- Se a segunda string for maior que a primeira string, a função retornará maior que 0 ou >0. 0.<>
Sintaxe
int compare (const string &str) const;
Vamos criar um programa simples para comparar duas strings usando a função compare() em C++.
Programa2.cpp
#include using namespace std; int main () { string str1, str2; // declare string variable cout <> str1; cout <> 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; } </0)>
Saída
1st Run: Enter the string 1: Program Enter the string 2: program Program is smaller than program string 2nd Run: Enter the string 1: APPLE Enter the string 2: APPLE Both strings are equal.
Operador Relacional
É o operador usado para comparar duas strings ou valores numéricos em C++. C++ possui diferentes tipos de operadores relacionais, como '==', '!=', >, Programa3.cpp Saída 2eExecução: Vamos criar um programa para comparar se as strings são iguais ou não usando o operador Not Equal To (!=) em C++. Programa4.cpp Saída 2eCorrer: Programa5.cpp Vamos criar um programa simples para comparar a primeira string com outra string usando a função definida pelo usuário em C++. Programa6.cpp Saída #include using namespace std; int main () { // declare string variables string str1; string str2; cout << ' Enter the String 1: ' <> str1; cout << ' Enter the String 2: ' <> 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; }
Enter the String 1: JavaTpoint Enter the String 2: javatpoint String is not equal.
Enter the String 1: Program Enter the String 2: Program String is equal.
Compare duas strings usando o operador relacional diferente de (!=)
#include using namespace std; int main () { // declare string variables string str1; string str2; cout << ' Enter the String 1: ' <> str1; cout << ' Enter the String 2: ' <> 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; }
Enter the String 1: JAVATpoint Enter the String 2: JavaTPOINT String is not equal.
d flip-flop
Enter the String 1: HELLO Enter the String 2: HELLO String is equal.
Compare duas strings usando o loop for e a instrução if em C++
#include using namespace std; int main () { char s1[50], s2[50]; // declare character array int i, disp; cout << ' Enter the String 1: ' <> s1; cout << ' Enter the String 2: ' <> s2; for (i = 0; s1[i] == s2[i] && s1[i] == ' '; i++); if (s1[i] <s2[i]) 1 2 { cout < s2[i]) << ' string is less than 1'; } else equal to 2'; return 0; pre> <p> <strong>Output</strong> </p> <pre> Enter the String 1: WELCOME Enter the String 2: WELCOME String 1 is equal to String 2 </pre> <h3>Compare two strings using the User-defined function in C++</h3> <p>Let's create a simple program to compare the first string with another string using the user-defined function in C++.</p> <p> <strong>Program6.cpp</strong> </p> <pre> #include 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. ' < 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 ( 'JavaT'); string str2 ( 'Tpoint'); // call function RelationalCompare (str1, str2); string str3 ('JavaTpoint'); string str4 ('JavaTpoint'); RelationalCompare (str3, str4); return 0; } </pre> <p> <strong>Output</strong> </p> <pre> JavaT is not equal to Tpoint string. Tpoint is greater than JavaT string. JavaTpoint is equal to JavaTpoint string. </pre> <hr></s2[i])>
Compare duas strings usando a função definida pelo usuário em C++
#include 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. ' < 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 ( 'JavaT'); string str2 ( 'Tpoint'); // call function RelationalCompare (str1, str2); string str3 ('JavaTpoint'); string str4 ('JavaTpoint'); RelationalCompare (str3, str4); return 0; }
JavaT is not equal to Tpoint string. Tpoint is greater than JavaT string. JavaTpoint is equal to JavaTpoint string.