C字串操作

2021-07-09 05:03:30 字數 4928 閱讀 6864

c字串操作**)

注:文中的幾個大小寫不敏感比較函式,原文用的是stricmp等,後來發現linux的std庫沒有,改為strcasecmp系列。

函式名: strcpy

功 能: 拷貝乙個字串到另乙個字串

用 法: char *strcpy(char *destin, char *source);

程式例: 

#i nclude

#i nclude

int main(void)        

函式名: strcat

功 能: 字串拼接函式 

用 法: char *strcat(char *destin, char *source);

程式例: 

#i nclude

#i nclude

int main(void)        

函式名: strchr

功 能: 在乙個串中查詢給定字元的第乙個匹配之處/ 

用 法: char *strchr(char *str, char c);

程式例: 

#i nclude #i nclude

int main(void)        

函式名: strcmp

功 能: 串比較

用 法: int strcmp(char *str1, char *str2);

看asic碼,str1>str2,返回值 > 0;兩串相等,返回0程式例: 

#i nclude

#i nclude

int main(void)        

函式名: strncmpi

功 能: 將乙個串中的一部分與另乙個串比較, 不管大小寫

用 法: int strncmpi(char *str1, char *str2, unsigned maxlen);

程式例: 

#i nclude

#i nclude

int main(void)

函式名: strcpy 

功 能: 串拷貝 

用 法: char *strcpy(char *str1, char *str2);

程式例: 

#i nclude

#i nclude

int main(void) 

函式名: strcspn

功 能: 在串中查詢第乙個給定字符集內容的段

用 法: int strcspn(char *str1, char *str2);

程式例: 

#i nclude

#i nclude

#i nclude

int main(void)        

函式名: strdup 

功 能: 將串拷貝到新建的位置處

用 法: char *strdup(char *str);

程式例: 

#i nclude

#i nclude

#i nclude

int main(void)

函式名: strcasecmp

功 能: 以大小寫不敏感方式比較兩個串 

用 法: int strcasecmp

(char *str1, char *str2); 

程式例: 

#i nclude

#i nclude

int main(void) 

函式名: strerror

功 能: 返回指向錯誤資訊字串的指標

用 法: char *strerror(int errnum);

程式例: 

#i nclude

#i nclude

int main(void) 

函式名: strcasecmp

功 能: 將乙個串與另乙個比較, 不管大小寫

用 法: int strcasecmp

(char *str1, char *str2); 

程式例: 

#i nclude

#i nclude

int main(void)

函式名: strncmp

功 能: 串比較

用 法: int strncmp(char *str1, char *str2, int maxlen);

程式例: 

#i nclude

#i nclude

int main(void) 

函式名: strncasecmp

功 能: 把串中的一部分與另一串中的一部分比較, 不管大小寫 

用 法: int strncasecmp

(char *str1, char *str2); 

程式例: 

#i nclude

#i nclude

int main(void) 

函式名: strncpy 

功 能: 串拷貝 

用 法: char *strncpy(char *destin, char *source, int maxlen); 

程式例: 

#i nclude

#i nclude

int main(void)

函式名: strnicmp

功 能: 不注重大小寫地比較兩個串

用 法: int strnicmp(char *str1, char *str2, unsigned maxlen);

程式例: 

#i nclude

#i nclude

int main(void)

函式名: strnset 

功 能: 將乙個串中的所有字元都設為指定字元

用 法: char *strnset(char *str, char ch, unsigned n); 

程式例: 

#i nclude

#i nclude

int main(void) 

函式名: strpbrk

功 能: 在串中查詢給定字符集中的字元

用 法: char *strpbrk(char *str1, char *str2); 

程式例: 

#i nclude

#i nclude

int main(void) 

函式名: strrchr 

功 能: 在串中查詢指定字元的最後乙個出現

用 法: char *strrchr(char *str, char c);

程式例: 

#i nclude

#i nclude

int main(void) 

函式名: strrev 

功 能: 串倒轉 

用 法: char *strrev(char *str);

程式例: 

#i nclude

#i nclude

int main(void)

函式名: strset 

功 能: 將乙個串中的所有字元都設為指定字元 

用 法: char *strset(char *str, char c); 

程式例: 

#i nclude

#i nclude

int main(void)        

函式名: strspn 

功 能: 在串中查詢指定字符集的子集的第一次出現 

用 法: int strspn(char *str1, char *str2); 

程式例: 

#i nclude

#i nclude

#i nclude

int main(void) 

函式名: strstr 

功 能: 在串中查詢指定字串的第一次出現 

用 法: char *strstr(char *str1, char *str2);

程式例: 

#i nclude

#i nclude

int main(void)

函式名: strtod 

功 能: 將字串轉換為double型值

用 法: double strtod(char *str, char **endptr);

程式例: 

#i nclude

#i nclude

int main(void) 

函式名: strtok

功 能: 查詢由在第二個串中指定的分界符分隔開的單詞

用 法: char *strtok(char *str1, char *str2); 

程式例: 

#i nclude

#i nclude

int main(void)

函式名: strtol 

功 能: 將串轉換為長整數

用 法: long strtol(char *str, char **endptr, int base); 

程式例: 

#i nclude

#i nclude

int main(void) 

函式名: strupr 

功 能: 將串中的小寫字母轉換為大寫字母 

用 法: char *strupr(char *str); 

程式例: 

#i nclude

#i nclude

int main(void) 

函式名: swab 

功 能: 交換位元組 

用 法: void swab (char *from, char *to, int nbytes);

程式例: 

#i nclude

#i nclude

#i nclude

char source[15] = "rfna koblrna d"; char target[15]; 

int main(void)  

from: 

c 字串操作

獲得漢字的區位碼 bytearray newbyte 2 求字串長度 求字串長度 int len string inputstring 檢測含有中文字串的實際長度 str為要檢測的字串 asciiencoding n new asciiencoding byte b n.getbytes str i...

C 字串操作

1.根據單個分隔字元用split擷取 例如複製 如下 string st gt123 1 string sarray st.split 即可得到sarray 0 gt123 sarray 1 1 2.利用多個字元來分隔字串 例如複製 如下 string str gtazb jiangjben 123...

c字串操作

1 字元陣列的定義與初始化 字元陣列的初始化,最容易理解的方式就是逐個字元賦給陣列中各元素。char str 10 即把10個字元分別賦給str 0 到str 9 10個元素 如果花括號中提供的字元個數大於陣列長度,則按語法錯誤處理 若小於陣列長度,則只將這些字元陣列中前面那些元素,其餘的元素自動定...