您好,登錄后才能下訂單哦!
字符串分割經(jīng)常用到,這里做一個記錄。方便查閱。
1.使用strtok();其中
采用strtok(),分隔符可以是多種,如 * ,#中的一種或幾種的組合
vector<string> stringSplit(string s, const char * split) { vector<string> result; const int sLen = s.length(); char *cs = new char[sLen + 1]; strcpy(cs, s.data()); char *p; p = strtok(cs, split); while (p) { printf("%s\n", p); string tmp(p); result.push_back(tmp); p = strtok(NULL, split); } return result; }
2.使用string.substr();其中
采用string.substr(),分隔符只能是一種,如 * ,#中的一種
vector<string> vec; int j = 0; for (int i = 0; i<str.size(); i++){ if (str[i] == ' '){ string tmp = str.substr(j, i - j); vec.push_back(tmp); j = i + 1; } if (i == str.size() - 1){ string tmp = str.substr(j, i - j + 1); vec.push_back(tmp); } }
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。