从stringstream到unsigned char

时间:2013-06-28 09:28:56

标签: c++ stringstream

这是我的问题:

std::string str = "12 13 14 15 16.2";  // my input

我想要

unsigned char myChar [4]; // where myChar[0]=12 .. myChar[0]=13 ... etc...

我尝试使用istringstream:

  std::istringstream is (str);
  unsigned char myChar[4];
  is >> myChar[0]  // here something like itoa is needed 
     >> myChar[1]  // does stringstream offers some mechanism 
                   //(e.g.: from char 12 to int 12) ?
     >> myChar[2]
     >> myChar[3]

但我(很明显)

  

myChar [0] = 1 .. myChar [1] = 2 .. myChar [2] = 3

没办法......我必须使用sprintf!??!不幸的是我无法使用boost或C ++ 11 ......

TIA

2 个答案:

答案 0 :(得分:0)

无符号字符值恰好是一个字节值。 一个字节足以存储INTEGER而不是0-255范围内的实数或只有一个符号为'1','2'等等。 所以你可以将12号存储在unsigned char值中,但你不能存储“12”字符串,因为它包含2个char元素 - '1'和'2'(普通c字符串甚至有第三个'\ 0'字符串终止字符)。 对于像16.2这样的实际值,你需要四个无符号字符来存储它所拥有的每个符号 - '1','6','。','2'。

答案 1 :(得分:0)

我知道的唯一解决方案是解析字符串。这是一个例子:

#include <iostream>
#include <string>
#include <sstream>

using namespace std;

int main ()
{
    stringstream ss("65 66 67 68 69.2");
    string value;
    int counter=0;

    while (getline(ss, value, ' '))
    {
        if (!value.empty())
        {
            cout << (unsigned char*) value.c_str() << endl;
            counter++;
        }
    }
    cout << "There are " << counter << " records." << endl;
}