美文网首页
ubuntu 14.04 安装和使用 boost 库

ubuntu 14.04 安装和使用 boost 库

作者: afternone | 来源:发表于2014-11-09 21:37 被阅读0次

    1 安装

    sudo apt-get install libboost-dev

    2 使用

    #include <iostream>
    #include <string>
    #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 库

          本文链接:https://www.haomeiwen.com/subject/sxwbtttx.html