C++中Regex(regex) 迭代器(iterator) 詳解

來源:互聯網
上載者:User

Regex(regex), 使用boost的regex標頭檔, 是C++11的新標準, 但是gcc4.8.1並未完全支援, 所以使用boost庫;

具體安裝: http://blog.csdn.net/caroline_wendy/article/details/17282187

Regex的書寫規範, 以ECMAScript為例, 使用迭代器可以遍曆原字串, 輸出符合要求的所有字串;

使用prefix()和suffix()方法, 可以輸出前一個未匹配的字串和後一個未匹配的字串;

Regex的子運算式(subexpressions), 可以分段輸出Regex, 在Regex中, 以括弧"()"分解;

代碼如下:

#include <iostream>  #include <string>  #include <algorithm>  #include <boost/regex.hpp>        using namespace std;  using namespace boost;        int main()  {      std::string pattern("[^c]ei");      pattern = "[[:alpha:]]*" + pattern + "[[:alpha:]]*";      boost::regex r(pattern, regex::icase); //忽略大小寫      std::string str("Ruby Carolinei biubiubiu Weindy SpikeI Winnceiy");      //使用正則迭代器進行遍曆      for(boost::sregex_iterator it(str.begin(), str.end(), r), end_it;              it!=end_it; ++it)          std::cout << it->str() << std::endl;            //輸出Regex的前後字串      std::cout << std::endl;      for(boost::sregex_iterator it(str.begin(), str.end(), r), end_it;              it!=end_it; ++it){          auto pos = it->prefix().length();          pos = pos>40 ? pos-40 : 0;          std::cout << it->prefix().str().substr(pos) /*輸出前一個未匹配的字串*/                << "\n\t\t>>>" << it->str() << "<<<\n"                << it->suffix().str().substr(0, 40) /*輸出之後的字串*/                <<std::endl;      }            //匹配子運算式      std::string filename("File.cqp MyGod.cpP");      boost::regex rsub("([[:alnum:]]+)\\.(cpp|cxx|cc)$", regex::icase);      smatch results;      if(boost::regex_search(filename, results, rsub))          std::cout << results.str(1) << std::endl;  }

輸出:

Carolinei  Weindy  SpikeI        Ruby           >>>Carolinei<<<   biubiubiu Weindy SpikeI Winnceiy   biubiubiu           >>>Weindy<<<   SpikeI Winnceiy                 >>>SpikeI<<<   Winnceiy  MyGod

作者: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.