是的,C++中的string匹配可以忽略大小寫。可以使用C++標準庫中的algorithm函數tolower()將字符串轉換為小寫,然后再進行匹配。例如:
#include <algorithm>
#include <cctype>
#include <iostream>
#include <string>
using namespace std;
int main() {
string str1 = "Hello World";
string str2 = "hello world";
transform(str1.begin(), str1.end(), str1.begin(), ::tolower); // 將str1轉換為小寫
transform(str2.begin(), str2.end(), str2.begin(), ::tolower); // 將str2轉換為小寫
if (str1 == str2) {
cout << "Strings match, ignoring case." << endl;
} else {
cout << "Strings do not match." << endl;
}
return 0;
}
輸出結果為:
Strings match, ignoring case.