string h檔案中函式的詳細用法,附加例項

2021-08-28 15:55:03 字數 2974 閱讀 1015

自以為身經百戰,突然發現好多基本常用的string.h中字串處理函式自己都不知道,用都沒用過,真是井底之蛙,會個strcmp strcpy就自以為是,沉下身心好好學學吧,唉!

函式名: strcpy

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

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

程式例:

#include

#include

int main(void)

char string[10];

char *str1 = "abcdefghi";

strcpy(string, str1);

printf("%s\n", string);

return 0;

函式名:strncpy

原型:char * strncpy(char *dest, char *src, size_t n);  

功能:將字串src中最多n個字元複製到字元陣列dest中(它並不像strcpy一樣遇到null才停止複製,而是等湊夠n個字元才開始複製),返回指向dest的指標。

函式名: strcat

功 能: 字串拼接函式

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

程式例:

#include

#include

int main(void)

char destination[25];

char *blank = " ", *c = "c++", *borland = "borland";

strcpy(destination, borland);

strcat(destination, blank);

strcat(destination, c);

printf("%s\n", destination);

return 0;

函式名: strchr

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

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

程式例:

#include

#include

int main(void)

char string[15];

char *ptr, c = 'r';

strcpy(string, "this is a string");

ptr = strchr(string, c);

if (ptr)

printf("the character %c is at position: %d\n", c, ptr-string);

else

printf("the character was not found\n");

return 0;

函式名: strcmp

功 能: 串比較

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

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

程式例:

#include

#include

int main(void)

char *buf1 = "aaa", *buf2 = "bbb", *buf3 = "ccc";

int ptr;

ptr = strcmp(buf2, buf1);

if (ptr > 0)

printf("buffer 2 is greater than buffer 1\n");

else

printf("buffer 2 is less than buffer 1\n");

ptr = strcmp(buf2, buf3);

if (ptr > 0)

printf("buffer 2 is greater than buffer 3\n");

else

printf("buffer 2 is less than buffer 3\n");

return 0;

函式名: strnicmp

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

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

程式例:

#include

#include

int main(void)

char *buf1 = "bbb", *buf2 = "bbb";

int ptr;

ptr = strnicmp(buf2, buf1);

if (ptr > 0)

printf("buffer 2 is greater than buffer 1\n");

if (ptr < 0)

printf("buffer 2 is less than buffer 1\n");

if (ptr == 0)

printf("buffer 2 equals buffer 1\n");

return 0;

函式名:strlen

功能: strlen函式求的是字串的長度,它求得方法是從字串的首位址開始到遇到第乙個'\0'停止計數,如果你只定義沒有給它賦初值,這個結果是不定的,它會從字串首位址一直記下去,直到遇到'\0'才會停止。

原型: size_t

strlen(const char *s);

#include

#include

int main()

原型:extern char *strstr(char *haystack, char *needle);

*所在標頭檔案:#include

*功能:從字串haystack中尋找needle第一次出現的位置(不比較結束符null)。

*說明:返回指向第一次出現needle位置的指標,如果沒找到則返回null。

string h包含的函式

得到字元陣列第乙個 0前的字元的個數 include include intmain 輸入 memeda 輸出 6返回兩個字串大小的比較結果,結果 0 s1 s2 include include intmain 輸入 dear mozart canon 輸出 str1 str2 把乙個字串複製給另乙...

C語言 string h中的常用函式

1.strlen 函式名 strlen 功能 求得字串的長度 說明 strlen str 為字串str的長度 例項 include include intmain 2.strcpy 函式名 strcpy 功 能 將乙個字串賦值給另乙個字串 說明 strcpy str1,str2 表示將str2賦值給...

string h中的一些函式

該函式返回的是字串的長度,不包含 0 如果用sizeof的話會算上 0 即會比strlen 大1。下面是我自己寫的與strlen 達到同樣功能的函式。我老師講,以後企業的筆試大部分都會讓你寫乙個函式原型,即與庫中函式達到同樣功能的函式 include include intmystrlen char...