5

char の入力があります*str = "13 00 0A 1B CA 00";

次の出力が必要ですBYTE bytes[] = { 0x13, 0x00, 0x0A, 0x1B, 0xCA, 0x00 };

誰かが解決策を手伝ってくれますか?

4

2 に答える 2

7

2つの文字をそれぞれ解析してから、に変換する必要があります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 );
}
于 2012-12-21T16:06:15.813 に答える
2

この回答では、入力形式が実際には 16 進バイトごとに 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
于 2012-12-21T16:16:49.443 に答える