歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

C++ 使用正則表達式分割字符串

C++ 使用正則表達式分割字符串

#include <iostream>
#include <string>
#include <boost/regex.hpp>

int main(){
    std::string  s = "who,lives:in-a,pineapple  under the sea?";
    boost::regex re(",|:|-|\\s+");
    boost::sregex_token_iterator
        p(s.begin(),s.end(),re,-1);
    boost::sregex_token_iterator end;
    while(p!=end)
    std::cout<<*p++<<'\n';
}

Copyright © Linux教程網 All Rights Reserved