中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++ string匹配如何支持正則表達式

c++
小樊
88
2024-09-25 07:35:14
欄目: 編程語言

C++的<regex>庫支持正則表達式。你可以使用std::regex類來創建一個正則表達式對象,然后使用它的成員函數來執行匹配操作。

下面是一個簡單的示例,演示如何使用C++的<regex>庫進行正則表達式匹配:

#include <iostream>
#include <string>
#include <regex>

int main() {
    std::string str = "Hello, my email is example@example.com and my phone number is 123-456-7890";
    
    // 創建一個正則表達式對象,匹配郵箱地址
    std::regex email_regex(R"(\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b)");
    
    // 在字符串中查找所有匹配的郵箱地址
    std::smatch matches;
    std::string::const_iterator searchStart(str.cbegin());
    while (std::regex_search(searchStart, str.cend(), matches, email_regex)) {
        std::cout << "Found email: " << matches[0] << std::endl;
        searchStart = matches.suffix().first;
    }
    
    // 創建一個正則表達式對象,匹配電話號碼
    std::regex phone_regex(R"(\d{3}-\d{3}-\d{4})");
    
    // 在字符串中查找所有匹配的電話號碼
    searchStart = str.cbegin();
    while (std::regex_search(searchStart, str.cend(), matches, phone_regex)) {
        std::cout << "Found phone number: " << matches[0] << std::endl;
        searchStart = matches.suffix().first;
    }
    
    return 0;
}

在上面的示例中,我們創建了兩個正則表達式對象:email_regex用于匹配郵箱地址,phone_regex用于匹配電話號碼。然后,我們使用std::regex_search函數在字符串str中查找所有匹配的郵箱地址和電話號碼,并將它們打印出來。

注意,正則表達式中的特殊字符需要進行轉義。例如,在上面的示例中,我們在正則表達式中使用了\b來表示單詞邊界,使用了\.來表示點字符。這是因為這些字符在正則表達式中具有特殊的含義。

0
文安县| 公安县| 武山县| 伊通| 丹寨县| 隆安县| 灌云县| 库伦旗| 阿勒泰市| 咸宁市| 绥芬河市| 凤庆县| 乐亭县| 中牟县| 绿春县| 天峻县| 紫云| 融水| 沐川县| 筠连县| 邵东县| 石门县| 南安市| 三门县| 大安市| 岳西县| 高阳县| 府谷县| 玉龙| 天峨县| 辽源市| 土默特右旗| 出国| 澄江县| 公主岭市| 无极县| 眉山市| 故城县| 靖西县| 财经| 墨江|