我输入了char *str = "13 00 0A 1B CA 00";
我需要输出BYTE bytes[] = { 0x13, 0x00, 0x0A, 0x1B, 0xCA, 0x00 };
有人可以帮忙解决方案吗?
答案 0 :(得分:7)
您需要解析两个字符中的每一个,然后将它们转换为BYTE
。这不是很难做到的。
std::stringstream converter;
std::istringstream ss( "13 00 0A 1B CA 00" );
std::vector<BYTE> bytes;
std::string word;
while( ss >> word )
{
BYTE temp;
converter << std::hex << word;
converter >> temp;
bytes.push_back( temp );
}
答案 1 :(得分:2)
这个答案假定输入格式实际上是每个十六进制BYTE的3个字符。为简单起见,我使用sscanf
,streams
显然也是一种选择。
std::vector<BYTE> bytes;
char *str = "13 00 0A 1B CA 00";
std::string input(str);
size_t count = input.size()/3;
for (size_t i=0; i < count; i++)
{
std::string numStr = input.substr(i*3, input.find(" "));
int num=0;
sscanf(numStr.c_str(), "%x", &num);
bytes.push_back((BYTE)num);
}
// You can access the output as a contiguous array at &bytes[0]
// or just add the bytes into a pre-allocated buffer you don't want vector