在C++中,CompareNoCase()是一個用于忽略大小寫比較字符串的函數。它通常用于比較兩個字符串,而不考慮字符的大小寫。
該函數的用法如下:
int CompareNoCase(const string& str1, const string& str2);
其中,str1和str2是要比較的兩個字符串,返回值為一個整數,表示比較的結果:
下面是一個示例:
#include <iostream>
#include <string>
#include <algorithm>
int main() {
std::string str1 = "Hello";
std::string str2 = "WORLD";
int result = stricmp(str1.c_str(), str2.c_str());
if (result < 0) {
std::cout << "str1 is less than str2" << std::endl;
} else if (result > 0) {
std::cout << "str1 is greater than str2" << std::endl;
} else {
std::cout << "str1 is equal to str2" << std::endl;
}
return 0;
}
在這個示例中,我們使用stricmp()函數來比較兩個字符串,忽略它們的大小寫。由于"Hello"小于"WORLD",所以輸出結果為"str1 is less than str2"。