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

c++ 实现对字符串按字符分割源代码

时间:2018-06-08 16:43:00      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:c++ 字符串分割

//头文件

#include <string>
#include <vector>

//-------------获取按ch分割的子字符串--------------------------
std::vector<std::string> split(char* pStr, char ch)
{
std::vector<std::string> vec;
if (nullptr == pStr)
return vec;

std::string strStr(pStr);
int _off=0;
std::string::size_type sizeType;
while(true)
{
    if (_off>=strStr.length())
        break;

    sizeType=strStr.find_first_of(ch,_off);
    if (sizeType<=0)
    {
        _off=sizeType+1;
        continue;
    }
    if (sizeType==std::string::npos)
    {
        vec.push_back(strStr.substr(_off,strStr.length() - _off));
        break;
    }
    vec.push_back(strStr.substr(_off,sizeType - _off));
    _off=sizeType+1;
}
return vec;

}

//调用实例

std::vector<std::string> vecCapdu = split((char *)strCapdu.c_str(),‘;‘);
for (std::vector<std::string>::const_iterator itr=vecCapdu.cbegin();itr!=vecCapdu.cend();itr++)
{

printf("%s",itr->c_str());//迭代器输出

}

c++ 实现对字符串按字符分割源代码

标签:c++ 字符串分割

原文地址:http://blog.51cto.com/whish/2126454

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