2 Star 0 Fork 0

mirrors_ReneNyffenegger/about-boost

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
regex.cpp 863 Bytes
一键复制 编辑 原始数据 按行查看 历史
René Nyffenegger 提交于 2017-07-05 16:36 . + regexp.cpp
// 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.");
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_ReneNyffenegger/about-boost.git
git@gitee.com:mirrors_ReneNyffenegger/about-boost.git
mirrors_ReneNyffenegger
about-boost
about-boost
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385