真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

c++實現(xiàn)對字符串按字符分割源代碼

//頭文件

創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站制作、成都網(wǎng)站制作與策劃設計,德安網(wǎng)站建設哪家好?創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設10余年,網(wǎng)設計領域的專業(yè)建站公司;建站業(yè)務涵蓋:德安等地區(qū)。德安做網(wǎng)站價格咨詢:18982081108

#include
#include

//-------------獲取按ch分割的子字符串--------------------------
std::vector split(char* pStr, char ch)
{
std::vector 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;

}

//調(diào)用實例

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

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

}


當前名稱:c++實現(xiàn)對字符串按字符分割源代碼
本文URL:http://weahome.cn/article/jsphde.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部