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/