在C ++中与java的string.split(“”)类似
这个问题在这里已经有了答案:
你可以使用strtok。 http://www.cplusplus.com/reference/cstring/strtok/
#include <string>
#include <vector>
#include <string.h>
#include <stdio.h>
std::vector<std::string> split(std::string str,std::string sep){
char* cstr=const_cast<char*>(str.c_str());
char* current;
std::vector<std::string> arr;
current=strtok(cstr,sep.c_str());
while(current!=NULL){
arr.push_back(current);
current=strtok(NULL,sep.c_str());
}
return arr;
}
int main(){
std::vector<std::string> arr;
arr=split("This--is--split","--");
for(size_t i=0;i<arr.size();i++)
printf("%sn",arr[i].c_str());
return 0;
}
我认为这个其他堆栈溢出问题可能会回答这个问题:
在C ++中拆分字符串?
总之,没有像Java那样的内置方法,但是其中一个用户写了这个非常相似的方法:
https://stackoverflow.com/a/236803/1739039
链接地址: http://www.djcxy.com/p/19577.html