第五節 字串資訊轉換成網路位元組序

2021-10-02 11:50:18 字數 790 閱讀 8321

#include

#include

/*#includein_addr_t inet_addr(const char* string);

成功時返回32位大端序整數型值,失敗時返回inaddr_none.

//功能與下面的方法類似

int inet_aton(const char* string,struct in_addr* addr);

// string 含有需轉換的ip位址資訊的字串位址值

// addr 將儲存轉換結果的in_addr結構體變數的位址值

*/int

main

(int argc,

char

const

*ar**)

else

printf

("network ordered integer addr: %#x \n"

,addr_inet.sin_addr.s_addr )

;//反轉

struct sockaddr_in addr1;

addr1.sin_addr.s_addr =

htonl

(0x1020304);

char

* str_ptr =

inet_ntoa

(addr1.sin_addr)

;printf

("dotted-decimal notation: %s\n"

,str_ptr )

;return0;

}

第五節 字串處理與字串函式

一.vb的字元處理機制 1.乙個西文字元用乙個位元組進行編碼,中文字元則採用兩個位元組進行編碼。乙個西文字元的儲存要占用乙個位元組的空間而乙個中文字元則要占用兩個位元組。這種處理機制通常稱為ansi方式,其方式 通常為asxii碼,乙個中文字元相當於由兩個ascii字元構成。2.把西文字元和中文字元...

第五節13讀取配置中的連線字串

using system using system.collections.generic using system.componentmodel using system.data using system.drawing using system.linq using system.text u...

php第五節(字串函式和時間 日期函式)

查詢字串函式 strpos 查詢字元第一次出現的位置 重點區分大小寫 stripos 查詢字串首次出現的位置 不區分大小寫 strrpos 計算指定字串在目標字串中最後一次出現的位置 str hello world position strpos str,e position stripos str...