天天看點

【正規表達式1】C++11正規表達式

頭檔案

#include <regex>

regex_match:整個字元串是否比對

按 Ctrl+C 複制代碼

按 Ctrl+C 複制代碼

regex_match:隻傳回第一個比對結果

【正規表達式1】C++11正規表達式
smatch rr1;
    smatch rr2;
    cout << boolalpha << regex_search(s1, rr1, reg1) << endl;  //true
    cout << "s1比對結果:" << rr1.str() << endl;           //saturday
    cout << boolalpha << regex_search(s2, rr2, reg1) << endl;  //true
    cout << "s1比對結果:" << rr2.str() << endl;           //saturday
    cout << endl;      
【正規表達式1】C++11正規表達式

iterator:傳回多個比對結果

類似于指針,調用成員要用"->"

【正規表達式1】C++11正規表達式
cout << "iterator結果:" << endl;
    sregex_iterator it(s2.begin(), s2.end(), reg1);
    sregex_iterator end;
    for(; it != end; ++it)
    {
        cout << it->str() << endl;
        //cout << *it << endl; 錯誤
    }

    cout << "token_iterator結果:" << endl;
    sregex_token_iterator tit(s2.begin(), s2.end(), reg1);
    sregex_token_iterator tend;
    for(; tit != tend; ++tit)
    {
        cout << tit->str() << endl;
        cout << *tit << endl;
    }      

子表達式比對

【正規表達式1】C++11正規表達式
regex reg2("(\\d{1,3}):(\\d{1,3}):(\\d{1,3}):(\\d{1,3})");
    string ip = "0:11:222:333";
    smatch m; 
    regex_match(ip, m, reg2);
    cout << "輸出:str()" << endl;
    cout << m.str() << endl;   //0:11:222:333
    cout << m.str(1) << endl;  //0
    cout << m.str(2) << endl;  //11
    cout << m.str(3) << endl;  //222
    cout << m.str(4) << endl;  //333

    cout << "輸出:[i]" << endl; //結果同上
    cout << m[0] << endl;
    cout << m[1] << endl;
    cout << m[2] << endl;
    cout << m[3] << endl;
    cout << m[4] << endl;      
【正規表達式1】C++11正規表達式

多個比對結果

【正規表達式1】C++11正規表達式
string ip2 = "0:11:222:333 4:55:66:7";
    sregex_iterator ip_it(ip2.begin(), ip2.end(), reg2);
    sregex_iterator ip_end;
    for(; ip_it != ip_end; ++ip_it)
    {
        cout << ip_it->str() << endl;
        cout << ip_it->str(1) << endl;
        cout << ip_it->str(2) << endl;
        cout << ip_it->str(3) << endl;
        cout << ip_it->str(4) << endl;
    }      

總的程式:

【正規表達式1】C++11正規表達式
【正規表達式1】C++11正規表達式
#include <iostream>
#include <string>
#include <regex>
using namespace std;

int main()
{
    //regex_match比對整個字元串
    regex reg1("\\w+day");
    string s1 = "saturday";
    string s2 = "saturday and sunday";
    smatch r1;
    smatch r2;
    cout << boolalpha << regex_match(s1, r1, reg1) << endl;
    cout << boolalpha << regex_match(s2, r2, reg1) << endl;
    cout << "s1比對結果:" << r1.str() << endl;
    cout << "s2比對結果:" << r2.str() << endl;
    cout << endl;

    //regex_match隻傳回第一個比對結果
    smatch rr1;
    smatch rr2;
    cout << boolalpha << regex_search(s1, rr1, reg1) << endl;
    cout << "s1比對結果:" << rr1.str() << endl;
    cout << boolalpha << regex_search(s2, rr2, reg1) << endl;
    cout << "s1比對結果:" << rr2.str() << endl;
    cout << endl;


    //使用iterator傳回多個比對結果
    //結果要用->
    cout << "iterator結果:" << endl;
    sregex_iterator it(s2.begin(), s2.end(), reg1);
    sregex_iterator end;
    for(; it != end; ++it)
    {
        cout << it->str() << endl;
        //cout << *it << endl; 錯誤
    }

    cout << "token_iterator結果:" << endl;
    sregex_token_iterator tit(s2.begin(), s2.end(), reg1);
    sregex_token_iterator tend;
    for(; tit != tend; ++tit)
    {
        cout << tit->str() << endl;
        cout << *tit << endl;
    }

    //子表達式比對
    regex reg2("(\\d{1,3}):(\\d{1,3}):(\\d{1,3}):(\\d{1,3})");
    string ip = "0:11:222:333";
    smatch m; 
    regex_match(ip, m, reg2);
    cout << "輸出:str()" << endl;
    cout << m.str() << endl;
    cout << m.str(1) << endl;
    cout << m.str(2) << endl;
    cout << m.str(3) << endl;
    cout << m.str(4) << endl;

    cout << "輸出:[i]" << endl;
    cout << m[0] << endl;
    cout << m[1] << endl;
    cout << m[2] << endl;
    cout << m[3] << endl;
    cout << m[4] << endl;

    //輸出結果同上
    //regex_search(ip, m, str2);
    cout << endl;
    string ip2 = "0:11:222:333 4:55:66:7";
    sregex_iterator ip_it(ip2.begin(), ip2.end(), reg2);
    sregex_iterator ip_end;
    for(; ip_it != ip_end; ++ip_it)
    {
        cout << ip_it->str() << endl;
        cout << ip_it->str(1) << endl;
        cout << ip_it->str(2) << endl;
        cout << ip_it->str(3) << endl;
        cout << ip_it->str(4) << endl;
    }

    return 0;

}