ubuntu 14.04 安装和使用 boost 库

1 安装

sudo apt-get install libboost-dev

2 使用

#include 
#include 
#include "boost/regex.hpp"
int main() {
    boost::regex reg("(Colo)(u)(r)",
    boost::regex::icase|boost::regex::perl);
    std::string s="Colour, colours, color, colourize";
    s=boost::regex_replace(s,reg,"$1$3");
    std::cout << s;
}

把上面内容保存到re.cpp文件中
编译:g++ -o re re.cpp -llibboost_regex
运行:./re
输出:Color, colors, color, colorize

你可能感兴趣的:(ubuntu 14.04 安装和使用 boost 库)