#include <boost/algorithm/string.hpp>
1. boost::split(std::vector<std::string>& phrases, const std::string& sentence, boost::is_any_of(const std::string& token))
根据定义的分割符号token(例如", ", ". ", " "等),把一个输入的字符串sentence,分割成一组短语保存在phrases中并输出。
#include <boost/algorithm/string.hpp>
1. boost::split(std::vector<std::string>& phrases, const std::string& sentence, boost::is_any_of(const std::string& token))
根据定义的分割符号token(例如", ", ". ", " "等),把一个输入的字符串sentence,分割成一组短语保存在phrases中并输出。