一、前言html
咱們常常涉及到數字與字符串之間的轉換,例如將32位無符號整數的ip地址轉換爲點分十進制的ip地址字符串,或者反過來。從給定的字符串中提取相關內容,例如給定一個地址:http://www.bokeyuan.cn:2345,咱們要從地址中提出協議,主機地址和端口號。以前對字符串和數字之間的關係不是很熟悉,工做中常常涉及到這個,如是好好總結一下。C語言提供了一些列的格式化輸入輸出函數,最基本的是面向控制檯標準輸出和輸入的printf和scanf,其實還有面向字符串的sprint和sscanf,面向文件的流的fprintf和fscanf。今天着重總結一下sprintf和sscanf系列函數,這兩個函數相似於scanf和printf ,不一樣點是從字符串*buffer用於輸入輸出。安全
二、sprintf函數函數
sprintf函數原型爲 int sprintf(char *str, const char *format, ...)。做用是格式化字符串,具體功能以下所示:測試
(1)將數字變量轉換爲字符串。ui
(2)獲得整型變量的16進制和8進制字符串。spa
(3)鏈接多個字符串。.net
舉例以下所示:rest
1 char str[256] = { 0 }; 2 int data = 1024; 3 //將data轉換爲字符串
4 sprintf(str,"%d",data); 5 //獲取data的十六進制
6 sprintf(str,"0x%X",data); 7 //獲取data的八進制
8 sprintf(str,"0%o",data); 9 const char *s1 = "Hello"; 10 const char *s2 = "World"; 11 //鏈接字符串s1和s2
12 sprintf(str,"%s %s",s1,s2);
三、sscanf函數code
sscanf函數原型爲int sscanf(const char *str, const char *format, ...)。將參數str的字符串根據參數format字符串來轉換並格式化數據,轉換後的結果存於對應的參數內。具體功能以下:orm
(1)根據格式從字符串中提取數據。如從字符串中取出整數、浮點數和字符串等。
(2)取指定長度的字符串
(3)取到指定字符爲止的字符串
(4)取僅包含指定字符集的字符串
(5)取到指定字符集爲止的字符串
sscanf能夠支持格式字符%[]:
(1)-: 表示範圍,如:%[1-9]表示只讀取1-9這幾個數字 %[a-z]表示只讀取a-z小寫字母,相似地 %[A-Z]只讀取大寫字母
(2)^: 表示不取,如:%[^1]表示讀取除'1'之外的全部字符 %[^/]表示除/之外的全部字符
(3),: 範圍能夠用","相鏈接 如%[1-9,a-z]表示同時取1-9數字和a-z小寫字母
(4)原則:從第一個在指定範圍內的數字開始讀取,到第一個不在範圍內的數字結束%s 能夠當作%[] 的一個特例 %[^ ](注意^後面有一個空格!)
解析網址的例子以下所示:
1 const char *s = "http://www.baidu.com:1234"; 2 char protocol[32] = { 0 }; 3 char host[128] = { 0 }; 4 char port[8] = { 0 }; 5 sscanf(s,"%[^:]://%[^:]:%[1-9]",protocol,host,port); 6
7 printf("protocol: %s\n",protocol); 8 printf("host: %s\n",host); 9 printf("port: %s\n",port); 10
四、snprintf函數
snprintf函數是sprintf函數的更加安全版本,考慮到字符串的字節數,防止了字符串溢出。函數形式爲:int snprintf(char *restrict buf, size_t n, const char * restrict format, ...);。最多從源串中拷貝n-1個字符到目標串中,而後再在後面加一個0。因此若是目標串的大小爲n 的話,將不會溢出。
五、測試程序
本次採用ip地址和整型之間的轉換,mac地址轉換做爲測試程序,整個程序以下所示:
1 #include <stdio.h>
2 #include <assert.h>
3
4 #define IP_STR_LEN 18
5 #define MAC_STR_LEN 18
6 #define MAC_BIT_LEN 6
7 #define LITTLE_ENDIAN 0
8 #define BIG_ENDIAN 1
9
10 typedef unsigned char uchar; 11 typedef unsigned int uint; 12
13 int big_little_endian() 14 { 15 int data = 0x1; 16 if (*((char*)&data) == 0x1) 17 return LITTLE_ENDIAN; 18 return BIG_ENDIAN; 19 } 20
21 uint ipstr2int(const char * ipstr) 22 { 23 assert(ipstr); 24 uint a,b,c,d; 25 uint ip = 0; 26 sscanf(ipstr,"%u.%u.%u.%u",&a,&b,&c,&d); 27 a = (a << 24) ; 28 b = (b << 16) ; 29 c = (c << 8) ; 30 d = (d << 0) ; 31 ip = a | b | c | d; 32 return ip; 33 } 34
35 char *int2ipstr(const uint ip, char *ipstr, const uint ip_str_len) 36 { 37 assert(ipstr); 38 if (big_little_endian() == LITTLE_ENDIAN) 39 sprintf(ipstr,"%u.%u.%u.%u", 40 (uchar)*((char*)(&ip)+3), 41 (uchar)*((char*)(&ip)+2), 42 (uchar)*((char*)(&ip)+1), 43 (uchar)*((char*)(&ip)+0)); 44 else
45 sprintf(ipstr,"%u.%u.%u.%u", 46 (uchar)*((char*)(&ip)+0), 47 (uchar)*((char*)(&ip)+1), 48 (uchar)*((char*)(&ip)+2), 49 (uchar)*((char*)(&ip)+3)); 50
51 return ipstr; 52 } 53
55 char *mac2str(const unsigned char *mac,char *mac_str,const uint mac_str_len) 56 { 57 assert(mac_str); 58 sprintf(mac_str,"%02X-%02X-%02X-%02X-%02X-%02X", 59 mac[0],mac[1],mac[2], 60 mac[3],mac[4],mac[5]); 61 } 62
63 int main() 64 { 65 char ip_str[IP_STR_LEN] = {0}; 66 char mac_str[MAC_STR_LEN] = {0}; 67 unsigned char mac[MAC_BIT_LEN] = {0XEF,0XAD,0XF4,0X4F,0XAA,0X0F}; 68 const char *ipstr = "10.0.3.193"; 69 unsigned int ip; 70 int2ipstr(167773121,ip_str,IP_STR_LEN); 71 mac2str(mac,mac_str,MAC_STR_LEN); 72 ip = ipstr2int(ipstr); 73 printf("%s\n",ip_str); 74 printf("%s\n",mac_str); 75 printf("ip:%u\n",ip); 76 return 0; 77 }
程序執行結果以下所示:
參考網址:
http://www.360doc.com/content/08/0813/22/45933_1539152.shtml
http://blog.csdn.net/wesweeky/article/details/6439777
http://msdn.microsoft.com/en-us/library/ce3zzk1k.aspx