//頭文件
創(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
{
std::vector
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
for (std::vector
{
printf("%s",itr->c_str());//迭代器輸出
}