一串十六進位以每兩位形式轉換成字串

來源:互聯網
上載者:User

例如 

121209055822010053轉換後為 

cc953a161035

#include <stdio.h>#include <string.h>int main(){char hex[200];char s[100];strcpy(hex,"98e1e97b3294cd43260aa8766dd21b9e354f5926d34f9b5fa510e84937316992a740a46b41d3e4fbe4ec285b2bc992db5f12d3cc0388e726b00f80fadd73f77846b40e8c75bb90739a484ec60a2c38422411f418e5ae075ac16194a3b1a60bd3");int L=strlen(hex), i, v;for (i=0;i<L/2;i++) {sscanf(hex+i*2,"%2X",&v);s[i]=(char)(v&0xFFu);}s[i]=0;printf("%s\n",s);L=strlen(s);for (i=0;i<L;i++) sprintf(hex+2*i,"%02x",(unsigned char)s[i]);hex[2*i+2]=0;printf("%s\n",hex);}

以上代碼輸出:

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.