C++ 字符串切割

std::vector<std::string> split(std::string str, std::string pattern)
{
    std::string::size_type pos;
    std::vector<std::string> result;
    str += pattern;//扩展字符串以方便操作  
    size_t size = str.size();
    for (int i = 0; i<int(size); i++)
    {
        pos = str.find(pattern, i);
        if (pos<size)
        {
            std::string s = str.substr(i, pos - i);
            result.push_back(s);
            i = pos + pattern.size() - 1;
        }
    }
    return result;
}

 

posted on 2021-08-26 15:40  缘随风烬  阅读(157)  评论(0编辑  收藏  举报