C++ MFC ASCII碼 字元 和十進位 或 十六進位字串 互相轉化

來源:互聯網
上載者:User
// char *pBuffer,unsigned long dwBufSizechar *buf1=new char[2*(dwBufSize+1)];memset(buf1,0,2*(dwBufSize+1));for (unsigned int j=0; j<dwBufSize; j++){unsigned char ddd = pBuffer[j];if ((ddd / 16) < 10)buf1[2*j] = (ddd / 16) + 48;elsebuf1[2*j] = (ddd / 16)- 10 + 65 ;//10=Aif ((ddd % 16) < 10)buf1[2*j+1] = (ddd % 16) + 48;elsebuf1[2*j+1] = (ddd % 16)- 10 + 65 ;//9=A}dlg->m_strRead+="\r\n";dlg->m_strRead+=buf1;

//或者

char u='U';
cs.Format("%x",u);//結果 為55

cs.Format("%d",x10);//結果為85

上例中,表示 字元 ‘U' 轉換成 十六進位字串的表示形式 55

===========================================================================================

十六進位數轉對應的ASCII碼字元

第一步,將十六進位的字串形式轉車10進位整型:

int x10=strtol("55",NULL,16);//此時,x10=85;

第二步,再將十進位整型85,轉為對應的字元:

CString cs;

cs.Format("%c",x10);//第一步的變數

//具體數字

cs.Format("%c",85);//十進位

cs.Format("%c",0x55); //注意,不是%s,而是%c。0x55表示十六進位整數。可轉為U字元

或者

char ch=(char)85;//十進位整型

char ch=(char)0x55;//十六進位整型

=============================================================================

通過sscanf 和sprintf 轉換

十六進位字串轉十進位整型

char *pStr = new char[10] ;
int data ;
strcpy(pStr,"f000") ;
sscanf(pStr,"%x",&data) ;//
delete []pStr ;

好了,data中就是你要的10進位數.

轉換回來也一樣:
char *pData = new char [10] ;
CString strData ;
int d = 0xf000 ;
sprintf(pData,"%x",d) ;
strData = pData ;
delete []pData ;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.