高洛峰2017-04-17 13:17:21
http://stackoverflow.com/questions/236129/split-a-string-in-c
string到int, 就是atoi, 或者sscanf, 或者stringstream也可以
上面的解決方案是廣譜的. 就是分割單一解決.
閒的蛋疼, 寫一個C語言版本的. stringstream雖然寫起來容易, 但是我不用, 效率比較低.....
const char* s = "1 2 3";
int32_t value = 0;
char* line = NULL, *ptr = NULL;
line = strtok_r(const_cast<char*>(s, " ", &ptr));
while (line) {
if (sscanf(line, "%d", &value) >= 1)
(void)value;//这边就是1,2,3之类的
line = strtok_r(NULL, ",", &ptr);
}
巴扎黑2017-04-17 13:17:21
const size_t SIZE = 10;
int * array = new int[SIZE];
std::istringstream stringStream("12 34 44");
for (size_t i = 0; (i < SIZE) && (stringStream >> array[i]); ++i) {}
希望有幫助
ringa_lee2017-04-17 13:17:21
一種比較愚鈍的方法,如果是我自己我會採用stringstream來進行轉換。
char x[10];
int a[10];
std::string name = "12 3 4 56";
const char * s = name.c_str();
const char * s1 = name.c_str();
int i=0;
while(s-s1<name.length() && sscanf(s, "%s", x)){
s += strlen(x)+1;
a[i++] = atoi(x);
}