代码拉取完成,页面将自动刷新
// g++ simplest.cpp -lboost_regex-mgw45-1_45
// set PATH=%BOOST_ROOT%\stage\lib;%PATH%
// g++ -I%BOOST_ROOT% simplest.cpp -o simplest.exe -L%BOOST_ROOT%\stage\lib -lboost_regex-mgw45-1_45 && simplest.exe
#include <boost/regex.hpp>
#include <iostream>
#include <string>
boost::regex pattern( "^foo|: \\d|bar$" );
//boost::regex pattern("foo");
void test_text(std::string const& text) {
boost::smatch matches;
if (boost::regex_search(text, matches, pattern)) {
std::cout << "\"" << text << "\" matches: " << matches[0] << std::endl;
}
else {
std::cout << "\"" << text << "\" doesn't match" << std::endl;
}
}
int main() {
test_text("hello world");
test_text("foo bar baz");
test_text("more less equal");
test_text("more less bar");
test_text("more or less");
test_text("Answer: 42.");
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。