91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c++ string匹配能否忽略大小寫

c++
小樊
98
2024-09-25 08:47:12
欄目: 編程語言

是的,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.

0
鄂尔多斯市| 蕉岭县| 瑞金市| 曲麻莱县| 五大连池市| 峨眉山市| 定南县| 隆尧县| 南投市| 红河县| 信阳市| 长白| 定结县| 河津市| 木里| 靖宇县| 镇安县| 义马市| 福泉市| 交城县| 宝山区| 恩平市| 甘洛县| 温泉县| 浮山县| 靖安县| 泰安市| 德清县| 平和县| 海安县| 怀安县| 长白| 马尔康县| 湘潭市| 鹿泉市| 仙游县| 格尔木市| 成武县| 阜新市| 腾冲县| 禹州市|