4

我想知道从 a 写入std::stringstreama的最佳方法是什么vector<int>

下面是一个例子stringstream"31 #00 532 53 803 33 534 23 37"

这是我所拥有的:

int buffer = 0;
vector<int> analogueReadings;
stringstream output;

 while(output >> buffer)
     analogueReadings.push_back(buffer);

然而似乎发生的是,它读取第一件事,然后它到达#00并返回0,因为它不是一个数字。

理想情况下,我想要的是,它到达 a#然后跳过所有字符,直到下一个空格。这可以用标志或其他东西吗?

谢谢。

4

4 回答 4

6
#include <iostream>
#include <sstream>
#include <vector>

int main ( int, char ** )
{
    std::istringstream reader("31 #00 532 53 803 33 534 23 37");
    std::vector<int> numbers;
    do
    {
        // read as many numbers as possible.
        for (int number; reader >> number;) {
            numbers.push_back(number);
        }
        // consume and discard token from stream.
        if (reader.fail())
        {
            reader.clear();
            std::string token;
            reader >> token;
        }
    }
    while (!reader.eof());

    for (std::size_t i=0; i < numbers.size(); ++i) {
        std::cout << numbers[i] << std::endl;
    }
}
于 2012-02-04T08:25:11.093 回答
1

您需要测试是否有号码。使用这里的答案:

如何确定字符串是否为 C++ 中的数字?

#include <iostream>
#include <sstream>
#include <vector>
using namespace std;

bool is_number(const std::string& s){
   std::string::const_iterator it = s.begin();
   while (it != s.end() && std::isdigit(*it)) ++it;
   return !s.empty() && it == s.end();
}
int main ()
{
    vector<int> analogueReadings;
    std::istringstream output("31 #00 532 04hello 099 53 803 33 534 23 37");

    std::string tmpbuff;
    while(output >> tmpbuff){
      if (is_number(tmpbuff)){
         int num;
         stringstream(tmpbuff)>>num;
         analogueReadings.push_back(num);
       }
    }
}

结果是 31 532 99 53 803 33 534 23 37

此外,这里描述了使用这样的词法转换的 重要缺点: How to parse a string to an int in C++? ,其中给出了替代方案tringstream(tmpbuff)>>num

例如 04hello 变成 4 和 7.4e55 变成 7。下溢和下溢也有可怕的问题。André Caron 的清洁解决方案

25 10000000000 77 0 0

进入

25 0 0 

在我的系统上。请注意,还缺少 77!

于 2012-02-04T08:12:03.573 回答
0

无循环版本:

#include <iostream>
#include <vector>
#include <iterator>
#include <algorithm>
#include <sstream>

using namespace std;

class IntegerFiller
{
    vector<int> &m_vec;
public:
    IntegerFiller(vector<int> &vec): m_vec(vec) {}

    void operator()(const std::string &str)
    {
        stringstream ss(str);
        int n;
        ss >> n;
        if ( !ss.fail() )
            m_vec.push_back(n);
    }
};

int main()
{
    vector<int> numbers;
    IntegerFiller filler(numbers);
    for_each(istream_iterator<string>(cin), istream_iterator<string>(), filler);
    copy(numbers.begin(), numbers.end(), ostream_iterator<int>(cout, " "));
    return 0;
}
于 2012-02-04T08:50:18.967 回答
0

我认为最好的方法是

#include <string>
#include <sstream>
#include <vector>

using namespace std;   

int main()
{   
  string numbers = "23,24,27,28";   
  vector<int> integers;   
  stringstream s(numbers);   
  char ch;   
  int a;   
  while(s>>a>>ch) integers.push_back(a);   //s >> reads int char pair 
  s>>a;                                    // reads the last int
  integers.push_back(a); 

  for(int i = 0; i < integers.size(); i++) cout << integers[i] << "\n";
}
于 2018-09-30T01:13:19.583 回答