10

假设我们有一个格式为 C++ 的 C 样式字符串[4 letters] [number] [number] ...。例如,字符串可能如下所示:

   abcd 1234    -6242          1212

应该注意的是,字符串应该有太多的空格(如上所示)。

我将如何提取这三个数字并将它们存储在一个数组中?

4

1 回答 1

16

字符串流的工作,现场观看:http: //ideone.com/e8GjMg

#include <sstream>
#include <iostream>

int main()
{
    std::istringstream iss(" abcd 1234    -6242          1212");

    std::string s;
    int a, b, c;

    iss >> s >> a >> b >> c;

    std::cout << s << " " << a << " " << b << " " << c << std::endl;
}

印刷

abcd 1234 -6242 1212
于 2013-06-11T11:16:34.600 回答