該函數需將BYTE編輯框變量十進制數轉化為16進制數,在按鈕事件下調用該函數 進行轉化。我是新手 求指導 剛接觸vc思維上有點轉不過來
大概的思路
char * input= "00FF0123D5...";
char* out2=new char[strlen(input/2];
int count=0;
for(char *s=input;strlen(s)>0;s+=2)
{
if(*s>='0' && *s<='9')
out2[count]=*s-'0';
else if(*s>='A'&& *s<='F')
out2[count]=*s-'A'+10;
if(strlen(s)>1)
{
out2[count]*=16;
if(*(s+1)>='0' && *(s+1)<='9') out2[count++]+=(*(s+1)-'0');
if(*(s+1)>='a'&& *(s+1)<='f') out2[count++]+=(*(s+1)-'a'+10);
}
}
delete[] out2;