La función wmemcmp() en C/C++ compara dos caracteres anchos. Esta función compara el primer número de caracteres anchos de dos caracteres anchos señalados por str1 y str2 , devuelve cero si ambas strings son iguales o un valor diferente de cero si no lo son.
Sintaxis:
int wmemcmp (const wchar_t* str1, const wchar_t* str2, size_t num);
Parámetros:
- str1: especifica el puntero a la primera string.
- str2: especifica el puntero a la segunda string.
- num: especifica el número de caracteres a comparar.
Valor de retorno: esta función devuelve tres valores diferentes que definen la relación entre dos strings:
- Cero : cuando ambas strings son iguales.
- Valor positivo : cuando el primer carácter ancho que no coincide en ambas strings tiene mayor frecuencia en str1 que en str2.
- Valor negativo : cuando el primer carácter ancho que no coincide en ambas strings tiene menos frecuencia en str1 que en str2
Los siguientes programas ilustran la función anterior:
Programa 1:
// C++ program to illustrate // wmemcmp() function #include <bits/stdc++.h> using namespace std; int main() { // initialize two strings wchar_t str1[] = L"geekforgeeks"; ; wchar_t str2[] = L"geekforgeeks"; // this function will compare these two strings // till 12 characters, if there would have been // more than 12 characters, it will compare // even more than the length of the strings int print = wmemcmp(str1, str2, 12); // print if it's equal or not equal( greater or smaller) wprintf(L"wmemcmp comparison: %ls\n", print ? L"not equal" : L"equal"); return 0; }
Producción:
wmemcmp comparison: equal
Programa 2:
// C++ program to illustrate // wmemcmp() function // Comparing two strings with the same type of function // wcsncmp() and wmemcmp() #include <bits/stdc++.h> using namespace std; int main() { // initialize two strings wchar_t str1[] = L"geekforgeeks"; ; wchar_t str2[] = L"geekforgeeks"; // wcsncmp() function compare characters // until the null character is encountered ('\0') int first = wcsncmp(str1, str2, 20); // but wmemcmp() function compares 20 characters // even after encountering null character int second = wmemcmp(str1, str2, 20); // print if it's equal or not equal( greater or smaller) wprintf(L"wcsncmp comparison: %ls\n", first ? L"not equal" : L"equal"); wprintf(L"wmemcmp comparison: %ls\n", second ? L"not equal" : L"equal"); return 0; }
Producción:
wcsncmp comparison: equal wmemcmp comparison: not equal
Publicación traducida automáticamente
Artículo escrito por AmanSrivastava1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA