字符處理函數(shù)C語言,字符處理函數(shù)c語言代碼

c語言字符串處理函數(shù)有哪些

1、puts函數(shù)——輸出字符串的函數(shù)

專注于為中小企業(yè)提供成都網(wǎng)站建設(shè)、成都做網(wǎng)站服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)鎮(zhèn)遠免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了1000+企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。

一般的形式為puts(字符串組)

作用:將一個字符串輸出到終端。如,char一個string,并賦予初值。調(diào)用puts(string);進行字符串的輸出。

2、gets函數(shù)——輸入字符串的函數(shù)

一般的形式:gets(字符數(shù)組)

作用:從終端輸入一個字符串到字符數(shù)組,并且得到一個函數(shù)值成為字符數(shù)組的起始地址。

gets(str);

鍵盤輸入,,,,你懂得。

注意:puts和gets函數(shù)只能輸出或者輸入一個字符串。

3、strcat函數(shù)——字符串連接函數(shù)

一般的形式:strcat(字符數(shù)組1,字符數(shù)組2);

作用:把兩個字符串?dāng)?shù)組中字符串連接起來,把字符串2連接到字符串1的后面。

說明:字符數(shù)組1必須足夠大,以便容納連接后的新字符串。

4、strcpy/strncpy函數(shù)——字符串復(fù)制函數(shù)

一般形式:strcpy(字符數(shù)組1,字符串2);

作用:將字符串2復(fù)制到字符數(shù)組1中去。

如:char str1[10],str2[]="DongTeng";

strcpy(str1,str2);

執(zhí)行后的結(jié)果為:你懂得

注意:

1. 不能用賦值語句直接將一個字符串常量或者字符數(shù)組直接給一個字符數(shù)組。

2. 用strncpy可以賦值指定的位置的字符。strncpy(str1,str2,3);將str2中的第3個字符復(fù)制到str1中。

5、strcmp函數(shù)——字符串比較函數(shù)

一般形式:strcmp(字符串1,字符串2);

作用:用來比較兩個字符串的差異。具有不同的比較規(guī)則。

6、strlen函數(shù)——測字符串長度的函數(shù)

一般形式:strlen(字符數(shù)組);

如:char str[10]="DongTeng";

printf("%d",strlen(str));

得到的結(jié)果是:5

7、strlwr函數(shù)——轉(zhuǎn)換為小寫的函數(shù)

一般形式:strlwr(字符串);

8、strupr函數(shù)——轉(zhuǎn)換為大寫的函數(shù)

一般形式:strupr(字符串)。

C語言字符串處理的庫函數(shù)有哪些

函數(shù)名: strrchr

功 能: 在串中查找指定字符的最后一個出現(xiàn)

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

舉例:

[cpp] view plain copy

char fullname="./lib/lib1.so";

char *ptr;

ptr = strrchr(fullname,'/');

printf("filename is %s",++ptr);

//運行結(jié)果:filename is lib1.so

函數(shù)名: strchr

功 能: 在串中查找指定字符的第一個出現(xiàn)

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

舉例:

[cpp] view plain copy

char fullname="./lib/lib1.so";

char *ptr;

ptr = strrchr(fullname,'.');

printf("after strchr() is %s",++ptr);

//運行結(jié)果:after strchr() is /lib/lib1.so

函數(shù)名: strtok

功 能: 在串中查找指定字符的第一個出現(xiàn)

用 法: char *strtok(char *s, char *delim);

說明:

1.strtok函數(shù)的實質(zhì)上的處理是,strtok在s中查找包含在delim中的字符并用NULL(’/0′)來替換,直到找遍整個字符串。這句話有兩層含義:(1)每次調(diào)用strtok函數(shù)只能獲得一個分割單位。(2)要獲得所有的分割單元必須反復(fù)調(diào)用strtok函數(shù)。

2.strtok函數(shù)以后的調(diào)用時的需用NULL來替換s.

3.形參s(要分割的字符串)對應(yīng)的變量應(yīng)用char s[]=”….”形式,而不能用char *s=”….”形式。

舉例:

[cpp] view plain copy

void main()

{

char buf[]=”Golden Global View”;

char* token = strtok( buf, ” “);

while( token != NULL )

{

printf( ”%s “, token );

token = strtok( NULL, ” “);

}

return 0;

}

/*其結(jié)果為:

Golden

Global

View

*/

函數(shù)名:strncpy

功能:把src所指由NULL結(jié)束的字符串的前n個字節(jié)復(fù)制到dest所指的數(shù)組中

用法:char *strncpy(char *dest, char *src, int n);

說明:

如果src的前n個字節(jié)不含NULL字符,則結(jié)果不會以NULL字符結(jié)束。

如果src的長度小于n個字節(jié),則以NULL填充dest直到復(fù)制完n個字節(jié)。

src和dest所指內(nèi)存區(qū)域不可以重疊且dest必須有足夠的空間來容納src的字符串。

返回指向dest的指針。

舉例:

[c-sharp] view plain copy

#include syslib.h

#include string.h

main()

{

char buf[4];

char *s="abcdefg";

strncpy(buf,s,4);

printf("%s/n",buf);

return 0;

}

/*運行結(jié)果:

abcd

*/

函數(shù)名: stpcpy

功 能: 拷貝一個字符串到另一個

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

舉例:

[cpp] view plain copy

#include stdio.h

#include string.h

int main(void)

{

char string[10];

char *str1 = "abcdefghi";

stpcpy(string, str1);

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

return 0;

}

/*運行結(jié)果

abcdefghi

*/

函數(shù)名: strcat

功 能: 字符串拼接函數(shù)

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

舉例:

[cpp] view plain copy

#include string.h

#include stdio.h

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;

}

/*運行結(jié)果:

Borland C++

*/

函數(shù)名: strcmp

功 能: 串比較

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

看Asic碼,str1str2,返回值 0;兩串相等,返回0

舉例:

[cpp] view plain copy

#include string.h

#include stdio.h

int main(void)

{

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

int ptr;

ptr = strcmp(buf2, buf1);

if (ptr 0)

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

else if(ptr 0)

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

else

printf("buffer 2 is equal with buffer 1/n");

return 0;

}

/*運行結(jié)果:

buffer 2 is greater than buffer 1

*/

函數(shù)名: strncmpi

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

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

舉例:

[cpp] view plain copy

#include string.h

#include stdio.h

int main(void)

{

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

int ptr;

ptr = strcmpi(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;

}

函數(shù)名: strcspn

功 能: 在串中查找第一個給定字符集內(nèi)容的段

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

舉例:

[cpp] view plain copy

#include stdio.h

#include string.h

#include alloc.h

int main(void)

{

char *string1 = "1234567890";

char *string2 = "747DC8";

int length;

length = strcspn(string1, string2);

printf("Character where strings intersect is at position %d/n", length);

return 0;

}

函數(shù)名: strdup

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

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

舉例:

[cpp] view plain copy

#include stdio.h

#include string.h

#include alloc.h

int main(void)

{

char *dup_str, *string = "abcde";

dup_str = strdup(string);

printf("%s/n", dup_str);

free(dup_str);

return 0;

}

函數(shù)名: stricmp

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

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

舉例:

[cpp] view plain copy

#include string.h

#include stdio.h

int main(void)

{

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

int ptr;

ptr = stricmp(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;

}

函數(shù)名: strerror

功 能: 返回指向錯誤信息字符串的指針

用 法: char *strerror(int errnum);

舉例:

[cpp] view plain copy

#include stdio.h

#include errno.h

int main(void)

{

char *buffer;

buffer = strerror(errno);

printf("Error: %s/n", buffer);

return 0;

}

函數(shù)名: strncmp

功 能: 串比較

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

舉例:

[cpp] view plain copy

#include string.h

#include stdio.h

int main(void)

{

char *buf1 = "aaabbb", *buf2 = "bbbccc", *buf3 = "ccc";

int ptr;

ptr = strncmp(buf2,buf1,3);

if (ptr 0)

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

else

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

ptr = strncmp(buf2,buf3,3);

if (ptr 0)

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

else

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

return(0);

}

函數(shù)名: strncmpi

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

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

舉例:

[cpp] view plain copy

#include string.h

#include stdio.h

int main(void)

{

char *buf1 = "BBBccc", *buf2 = "bbbccc";

int ptr;

ptr = strncmpi(buf2,buf1,3);

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;

}

函數(shù)名: strnset

功 能: 將一個串中的所有字符都設(shè)為指定字符

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

舉例:

[cpp] view plain copy

#include stdio.h

#include string.h

int main(void)

{

char *string = "abcdefghijklmnopqrstuvwxyz";

char letter = 'x';

printf("string before strnset: %s/n", string);

strnset(string, letter, 13);

printf("string after strnset: %s/n", string);

return 0;

}

函數(shù)名: strpbrk

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

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

舉例:

[cpp] view plain copy

#include stdio.h

#include string.h

int main(void)

{

char *string1 = "abcdefghijklmnopqrstuvwxyz";

char *string2 = "onm";

char *ptr;

ptr = strpbrk(string1, string2);

if (ptr)

printf("strpbrk found first character: %c/n", *ptr);

else

printf("strpbrk didn't find character in set/n");

return 0;

}

函數(shù)名: strrev

功 能: 串倒轉(zhuǎn)

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

舉例:

[cpp] view plain copy

#include string.h

#include stdio.h

int main(void)

{

char *forward = "string";

printf("Before strrev(): %s/n", forward);

strrev(forward);

printf("After strrev(): %s/n", forward);

return 0;

}

/*運行結(jié)果:

Before strrev(): string

After strrev(): gnirts

*/

函數(shù)名: strstr

功 能: 在串中查找指定字符串的第一次出現(xiàn)

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

舉例:

[cpp] view plain copy

#include stdio.h

#include string.h

int main(void)

{

char *str1 = "Borland International", *str2 = "nation", *ptr;

ptr = strstr(str1, str2);

printf("The substring is: %s/n", ptr);

return 0;

}

函數(shù)名: strtod

功 能: 將字符串轉(zhuǎn)換為double型值

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

舉例:

[cpp] view plain copy

#include stdio.h

#include stdlib.h

int main(void)

{

char input[80], *endptr;

double value;

printf("Enter a floating point number:");

gets(input);

value = strtod(input, endptr);

printf("The string is %s the number is %lf/n", input, value);

return 0;

}

函數(shù)名: strtol

功 能: 將串轉(zhuǎn)換為長整數(shù)

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

舉例:

[cpp] view plain copy

#include stdlib.h

#include stdio.h

int main(void)

{

char *string = "87654321", *endptr;

long lnumber;

/* strtol converts string to long integer */

lnumber = strtol(string, endptr, 10);

printf("string = %s long = %ld/n", string, lnumber);

return 0;

}

函數(shù)名: strupr

功 能: 將串中的小寫字母轉(zhuǎn)換為大寫字母

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

舉例:

[cpp] view plain copy

#include stdio.h

#include string.h

int main(void)

{

char *string = "abcdefghijklmnopqrstuvwxyz", *ptr;

/* converts string to upper case characters */

ptr = strupr(string);

printf("%s/n", ptr);

return 0;

}

C語言中有哪些字符串處理函數(shù)?

因為c語言中,數(shù)組初始化時,如果給定的初始值個數(shù)小于數(shù)組長度,那么后面的剩余元素將被自動初始化為0,也就是字符串的結(jié)束標(biāo)志'\0'

strcmp()函數(shù)就是用于查找兩個以'\0'結(jié)束的字符串中的第一個不相同的字符的ascii值之差,如果將數(shù)組長度改為5,那么strcmp函數(shù)在前5個字符中找不到結(jié)束標(biāo)志,又因為程序不會對邊界進行檢查,所以會一直找下去,而此時,早已越界,所以會輸出不可預(yù)見的結(jié)果。

C語言關(guān)于字符串的操作函數(shù)有哪些

string.h頭文件中包含的字符串函數(shù)

void?*memcpy(void?*dest,?const?void?*src,?size_t?n);//將n字節(jié)長的內(nèi)容從一個內(nèi)存地址復(fù)制到另一個地址;如果兩個地址存在重疊,則最終行為未定義

void?*memmove(void?*dest,?const?void?*src,?size_t?n);//將n字節(jié)長的內(nèi)容從一個內(nèi)存地址復(fù)制到另一個地址;與memcpy不同的是它可以正確作用于兩個存在重疊的地址

void?*memchr(const?void?*s,?char?c,?size_t?n);//在從s開始的n個字節(jié)內(nèi)查找c第一次出現(xiàn)的地址并返回,若未找到則返回NULL

int?memcmp(const?void?*s1,?const?void?*s2,?size_t?n);//對從兩個內(nèi)存地址開始的n個字符進行比較

void?*memset(void?*,?int,?size_t);//用某種字節(jié)內(nèi)容覆寫一段內(nèi)存空間

char?*strcat(char?*dest,?const?char?*src);//在字符串dest之后連接上src

char?*strncat(char?*dest,?const?char?*src,?size_t?n);//從src截取n個字符連接在字符串dest之后,返回dest字符串

char?*strchr(const?char*?str,?int?ch);//從字符串str頭開始查找字符ch首次出現(xiàn)的位置

char?*strrchr(const?char*?str,int?ch);//從字符串str尾開始查找字符ch首次出現(xiàn)的位置

int?strcmp(const?char?*,?const?char?*);//基于字典順序比較兩個字符串

int?strncmp(const?char?*,?const?char?*,?size_t);//基于字典順序比較兩個字符串,最多比較n個字節(jié)

int?strcoll(const?char?*,?const?char?*);//基于當(dāng)前區(qū)域設(shè)置的字符順序比較兩個字符串

char?*strcpy(char*?str1,?const?char*?str2);//將str2拷貝給str1

char?*strncpy(char*?str1,?const?char*?str2,?size_t?n);//截取str2的n個字符拷貝給str1

char?*strerror(int);//返回錯誤碼對應(yīng)的解釋字符串,參見errno.h(非線程安全函數(shù))

size_t?strlen(const?char?*);//返回一個字符串的長度

size_t?strspn(const?char?*s,?const?char?*strCharSet);//從字符串s的起始處開始,尋找第一個不出現(xiàn)在strCharSet中的字符,返回其位置索引值。換句話說,返回從字符串s的起始位置的完全由strCharSet中的字符構(gòu)成的子串的最大長度。strspn為string?span的縮寫。不支持多字節(jié)字符集。

size_t?strcspn(const?char?*s,?const?char?*strCharSet);//從字符串s的起始處開始,尋找第一個出現(xiàn)在strCharSet中的字符,返回其位置索引值。換句話說,返回從字符串s的起始位置的完全由不屬于strCharSet中的字符構(gòu)成的子串的最大長度。strcspn為string?complement?span的縮寫。不支持多字節(jié)字符集。

char?*strpbrk(const?char?*s,?const?char?*strCharSet);//在字符串s中查找strCharSet中任意字符第一次出現(xiàn)的位置的指針值。strpbrk為string?pointer?break縮寫。不支持多字節(jié)字符集。

char?*strstr(const?char?*haystack,?const?char?*needle);//在字符串haystack中查找字符串needle第一次出現(xiàn)的位置,heystack的長度必須長于needle

char?*strtok(char?*strToken,?const?char?*strDelimit?);//將一個字符串strToken依據(jù)分界符(delimiter)分隔成一系列字符串。此函數(shù)非線程安全,且不可重入;但MSVC實現(xiàn)時使用了thread-local?static?variable因而是線程安全的單仍然是不可重入,即在單線程中不能對兩個源字符串交替調(diào)用該函數(shù)來分析token,應(yīng)當(dāng)對一個字符串分析完成后再處理別的字符串。

size_t?strxfrm(char?*dest,?const?char?*src,?size_t?n);//根據(jù)當(dāng)前l(fā)ocale轉(zhuǎn)換一個字符串為strcmp使用的內(nèi)部格式

分享文章:字符處理函數(shù)C語言,字符處理函數(shù)c語言代碼
文章源于:http://www.muchs.cn/article38/hssesp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)、定制網(wǎng)站標(biāo)簽優(yōu)化、動態(tài)網(wǎng)站、面包屑導(dǎo)航響應(yīng)式網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

綿陽服務(wù)器托管