C++中Regex 的 子運算式(subexpressions) 的資料驗證

來源:互聯網
上載者:User

子運算式(subexpressions)的 資料驗證(data validation), 可以通過括弧"()"分解Regex的子運算式;

然後使用下標標示符[], 輸出相應的子運算式, "0"代表全體, "1"代表第一個括弧, 依次遞加;

通過對於問號項?是否匹配, 驗證Regex的匹配式;

代碼:

#include <iostream>  #include <string>        #include <boost/regex.hpp>        using namespace std;  using namespace boost;        bool valid(const boost::smatch& m)  {      if(m[1].matched)          return m[3].matched && (m[4].matched == 0 || m[4].str() == " ");      else        return !m[3].matched && m[4].str() == m[6].str();  }        int main()  {      //問號(?)表示之前的可以選擇      std::string phone =              "(\\()?(\\d{3})(\\))?([-. ])?(\\d{3})([-. ]?)(\\d{4})";    boost::regex r(phone);      boost::smatch m;      std::string s("(432)312-3425 9424151424 15");      for(boost::sregex_iterator it(s.begin(), s.end(), r), end_it;              it != end_it; ++it)      {          if(valid(*it))              std::cout << "valid : " << it->str() << std::endl;          else            std::cout << "not valid : " << it->str() << std::endl;      }  }

輸出:

valid : (432)312-3425  valid : 9424151424

作者:csdn部落格 Spike_King

更多精彩內容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/cplus/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.