C/C++如何将string内容分离?


假设有以下字符串:


 string str="123 45 56 89";

现把其中连在一起的数字以整型格式单独取出来(int a=123,int b=45),有没有什么好方案?

c string C++ 算法

Zakito 10 years, 1 month ago

不知道有几个数的情况下,可以用istringstream

Lucia answered 10 years, 1 month ago

直接上函数?调用库函数,直接分离,或者



 for() {
if(a[] == ' ')
while
b[] = i--;
}

萝莉萝莉控 answered 10 years, 1 month ago


 int a, b, c, d;
sscanf("123 45 56 89", "%d %d %d %d", &a, &b, &c, &d);

http://www.cplusplus.com/reference/cstdio/sscanf/

右代宫、知夏 answered 10 years, 1 month ago

Your Answer