码迷,mamicode.com
首页 > 编程语言 > 详细

c++ 字符窜切割

时间:2015-02-26 18:04:33      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

std::vector<std::string> Tools::SplitStr(const char* baseStr, const char* rule)
{
    log("baseStr: %s",baseStr);
    std::vector<std::string> tempList;

    std::string str;
    char* item;
    item = strtok((char*)baseStr, rule);
    while (item)
    {
        str = item;
     log("item: %s", str.c_str());
tempList.push_back(str); item = strtok(NULL, rule); } return tempList; }

 

c++ 字符窜切割

标签:

原文地址:http://www.cnblogs.com/JD85/p/4301485.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!