我有一個字節數組,如0x21, 0x0D, 0x01, 0x03, 0x31, 0x32, 0x33
其containts的ASCII字符串"123"
與3 (string starts at 0x03, 0x31, 0x32, 0x33)
的長度我學習,所以會有人能告訴我如何得到輸出"123"
從它,並把它放在char*
?非常感謝閱讀的String []
BYTE Data[] = { 0x0D, 0x01, 0x03, 0x31, 0x32, 0x33 };
int Length = Data[2];
//Extract string "123" from Data and store as char* ?
C++不具有'字節[]'秒。請告訴我們你的代碼。 – SLaks
你在哪裏保留字節?將其轉換爲char *,最後加上0。 – perreal
對不起,我的問題更新了 – Dean