基于C語言string函數(shù)的詳解
更新時(shí)間:2013年05月29日 16:44:44 作者:
本篇文章是對(duì)C語言中string函數(shù)進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
PS:本文包含了大部分strings函數(shù)的說明,并附帶舉例說明。本來想自己整理一下的,發(fā)現(xiàn)已經(jīng)有前輩整理過了,就轉(zhuǎn)了過來。修改了原文一些源碼的問題,主要是用char *字義字符串的問題,導(dǎo)致程序運(yùn)行時(shí)崩潰。另外自己重寫了部分測試程序,使其更能滿足自己測試的需要。不當(dāng)之處,還請(qǐng)海涵。
@函數(shù)原型: char *strdup(const char *s)
函數(shù)功能: 字符串拷貝,目的空間由該函數(shù)分配
函數(shù)返回: 指向拷貝后的字符串指針
參數(shù)說明: src-待拷貝的源字符串
所屬文件: <string.h>
#include <stdio.h>
#include <string.h>
#include <alloc.h>
int main()
{
char *dup_str, *string="abcde";
dup_str=strdup(string);
printf("%s", dup_str);
free(dup_str);
return 0;
}
@函數(shù)名稱: strcpy
函數(shù)原型: char* strcpy(char* str1,char* str2);
函數(shù)功能: 把str2指向的字符串拷貝到str1中去
函數(shù)返回: 返回str1,即指向str1的指針
參數(shù)說明:
所屬文件: <string.h>
#include <stdio.h>
#include <string.h>
int main()
{
char string[10];
char *str1="abcdefghi";
strcpy(string,str1);
printf("the string is:%s\n",string);
return 0;
}
@函數(shù)名稱: strncpy
函數(shù)原型: char *strncpy(char *dest, const char *src,intcount)
函數(shù)功能: 將字符串src中的count個(gè)字符拷貝到字符串dest中去
函數(shù)返回: 指向dest的指針
參數(shù)說明: dest-目的字符串,src-源字符串,count-拷貝的字符個(gè)數(shù)
所屬文件: <string.h>
#include<stdio.h>
#include<string.h>
int main()
{
char*src = "bbbbbbbbbbbbbbbbbbbb";//20 'b's
char dest[50] ="aaaaaaaaaaaaaaaaaaaa";//20 'a's
puts(dest);
strncpy(dest, src, 10);
puts(dest);
return0;
}
輸出:
/*******************************************
aaaaaaaaaaaaaaaaaaaa
bbbbbbbbbbaaaaaaaaaa
*******************************************/
注意:strncpy只復(fù)制指定長度的字符,不會(huì)自動(dòng)在末尾加'\0'。若指定長度超過源字符串長度,不夠的部分補(bǔ)‘\0',
@函數(shù)名稱: strcat
函數(shù)原型: char* strcat(char * str1,char * str2);
函數(shù)功能: 把字符串str2接到str1后面,str1最后的'\0'被取消
函數(shù)返回: str1
參數(shù)說明:
所屬文件: <string.h>
#include <stdio.h>
#include <string.h>
int main()
{
char buffer[80];
strcpy(buffer,"Hello ");
strcat(buffer,"world");
printf("%s\n",buffer);
return 0;
}
@函數(shù)名稱: strncat
函數(shù)原型: char *strncat(char *dest, const char *src, size_t maxlen)
函數(shù)功能: 將字符串src中前maxlen個(gè)字符連接到dest中
函數(shù)返回:
參數(shù)說明:
所屬文件: <string.h>
#include <stdio.h>
#include <string.h>
char buffer[80];
int main()
{
strcpy(buffer,"Hello ");
strncat(buffer,"world",8);
printf("%s\n",buffer);
strncat(buffer,"*************",4);
printf("%s\n",buffer);
return 0;
}
注意:與strncpy不同的是,strncat會(huì)自動(dòng)在末尾加‘\0',若指定長度超過源字符串長度,則只復(fù)制源字符串長度即停止
@函數(shù)名稱: strcmp
函數(shù)原型: int strcmp(char * str1,char * str2);
函數(shù)功能: 比較兩個(gè)字符串str1,str2.
函數(shù)返回: str1<str2,返回負(fù)數(shù);str1=str2,返回 0;str1>str2,返回正數(shù).
參數(shù)說明:
所屬文件: <string.h>
#include <string.h>
#include <stdio.h>
int main()
{
char *buf1="aaa", *buf2="bbb",*buf3="ccc";
int ptr;
ptr=strcmp(buf2, buf1);
if(ptr>0)
printf("buffer 2 is greater thanbuffer 1\n");
else
printf("buffer 2 is less thanbuffer 1\n");
ptr=strcmp(buf2, buf3);
if(ptr>0)
printf("buffer 2 is greater thanbuffer 3\n");
else
printf("buffer 2 is less thanbuffer 3\n");
return 0;
}
@函數(shù)名稱: strncmp
函數(shù)原型: int strncmp(char *str1,char *str2,int count)
函數(shù)功能: 對(duì)str1和str2中的前count個(gè)字符按字典順序比較
函數(shù)返回: 小于0:str1<str2,等于0:str1=str2,大于0:str1>str2
參數(shù)說明: str1,str2-待比較的字符串,count-比較的長度
所屬文件: <string.h>
#include<string.h>
#include<stdio.h>
int main()
{
char str1[] ="aabbc";//
char str2[] = "abbcd";//
//為使測試程序更簡練,此處假定了strncmp只返回-1,0,1三個(gè)數(shù)
char res_info[] = {'<','=','>'};
int res;
//前1個(gè)字符比較
res = strncmp(str1, str2, 1);
printf("1:str1%c str2\n", res_info[res+1]);
//前3個(gè)字符比較
res = strncmp(str1, str2, 3);
printf("3:str1%c str2\n", res_info[res+1]);
}
輸出:
/****************************************
1:str1= str2
3:str1< str2
*****************************************/
@函數(shù)名稱: strpbrk
函數(shù)原型: char *strpbrk(const char *s1, const char *s2)
函數(shù)功能: 得到s1中第一個(gè)“同時(shí)也出現(xiàn)在s2中”字符的位置指針
函數(shù)返回: 位置指針
參數(shù)說明:
所屬文件: <string.h>
#include<stdio.h>
#include<string.h>
int main()
{
char *p="Find all vowels";
p=strpbrk(p+1,"aeiouAEIOU");
while(p)
{
printf("%s\n",p);
p=strpbrk(p+1,"aeiouAEIOU");
}
return 0;
}
輸出:
/**************************************
ind all vowels
all vowels
owels
els
**************************************/
@函數(shù)名稱: strcspn
函數(shù)原型: int strcspn(const char *s1, const char *s2)
函數(shù)功能: 統(tǒng)計(jì)s1中從頭開始直到第一個(gè)“來自s2中的字符”出現(xiàn)的長度
函數(shù)返回: 長度
參數(shù)說明:
所屬文件: <string.h>
#include<stdio.h>
#include<string.h>
int main()
{
printf("%d\n",strcspn("abcbcadef","cba"));
printf("%d\n",strcspn("xxxbcadef","cba"));
printf("%d\n",strcspn("123456789","cba"));
return 0;
}
輸出:
/************************
0
3
9
************************/
@函數(shù)名稱: strspn
函數(shù)原型: int strspn(const char *s1, const char *s2)
函數(shù)功能: 統(tǒng)計(jì)s1中從頭開始直到第一個(gè)“不來自s2中的字符”出現(xiàn)的長度
函數(shù)返回: 位置指針
參數(shù)說明:
所屬文件: <string.h>
#include<stdio.h>
#include<string.h>
#include<alloc.h>
int main()
{
printf("%d\n",strspn("abcbcadef","cba"));
printf("%d\n",strspn("xxxbcadef","cba"));
printf("%d\n",strspn("123456789","cba"));
return 0;
}
輸出:
/************************
6
0
0
************************/
@函數(shù)名稱: strchr
函數(shù)原型: char* strchr(char* str,char ch);
函數(shù)功能: 找出str指向的字符串中第一次出現(xiàn)字符ch的位置
函數(shù)返回: 返回指向該位置的指針,如找不到,則返回空指針
參數(shù)說明: str-待搜索的字符串,ch-查找的字符
所屬文件: <string.h>
#include<string.h>
#include<stdio.h>
int main()
{
char *str = "This is a string!";
char ch;
char *p;
while(1)
{
printf("Please input a char:");
ch = getchar();
p = strchr(str, ch);
if(p)
printf("%c is the %d character of\"%s\"\n",ch, (int)(p-str+1),str);
else
printf("Not found!\n");
printf("Press ESC to quit!\n\n");
if(27 == getch())
break;
fflush(stdin);
}
return 0;
}
運(yùn)行結(jié)果:
/********************************************
Please input achar:i
i is the 3character of "This is a string!"
Press ESC to quit!
Please input achar:l
Not found!
Press ESC to quit!
Please input achar:s
s is the 4character of "This is a string!"
Press ESC to quit!
**********************************************/
@函數(shù)名稱: strrchr
函數(shù)原型: char *strrchr(const char *s, int c)
函數(shù)功能: 得到字符串s中最后一個(gè)含有c字符的位置指針
函數(shù)返回: 位置指針
參數(shù)說明:
所屬文件: <string.h>
#include<string.h>
#include<stdio.h>
int main()
{
charstring[15];
char*ptr,c='r';
strcpy(string,"This is a string");
ptr=strrchr(string,c);
if (ptr)
printf("The character %c is at position:%d",c,ptr-string);
else
printf("The character was not found");
return 0;
}
@函數(shù)名稱: strstr
函數(shù)原型: char* strstr(char* str1,char* str2);
函數(shù)功能: 找出str2字符串在str1字符串中第一次出現(xiàn)的位置(不包括str2的串結(jié)束符)
函數(shù)返回: 返回該位置的指針,如找不到,返回空指針
參數(shù)說明:
所屬文件: <string.h>
#include<stdio.h>
#include<string.h>
int main()
{
char*str1="Open Watcom C/C++",*str2="Watcom",*ptr;
ptr=strstr(str1,str2);
printf("The substring is:%s\n",ptr);
return 0;
}
輸出:
The substringis:Watcom C/C++
@函數(shù)名稱: strrev
函數(shù)原型: char *strrev(char *s)
函數(shù)功能: 將字符串中的所有字符顛倒次序排列
函數(shù)返回: 指向s的指針
參數(shù)說明:
所屬文件: <string.h>
#include<string.h>
#include<stdio.h>
int main()
{
char forward[]="string"; //原文中定義為char*是不對(duì)的,指向代碼段的指針內(nèi)容是不可變的
printf("Before strrev():%s",forward);
strrev(forward);
printf("Afterstrrev(): %s",forward);
return 0;
}
輸出:
/************************************
Beforestrrev():string
After strrev():gnirts
************************************/
@函數(shù)名稱: strnset
函數(shù)原型: char *strnset(char *s, int ch, size_t n)
函數(shù)功能: 將字符串s中前n個(gè)字符設(shè)置為ch的值
函數(shù)返回: 指向s的指針
參數(shù)說明:
所屬文件: <string.h>
#include<stdio.h>
#include<string.h>
int main()
{
charstring[]="aaaaaaaaaaaaaaaaaaaaaaa";
char letter='x';
printf("string before strnset:%s\n",string);
strnset(string,letter,10);
printf("string after strnset: %s\n",string);
return 0;
}
輸出:
/*************************************************
string beforestrnset: aaaaaaaaaaaaaaaaaaaaaaa
string afterstrnset: xxxxxxxxxxaaaaaaaaaaaaa
*************************************************/
@函數(shù)名稱: strset
函數(shù)原型: char *strset(char *s, int ch)
函數(shù)功能: 將字符串s中所有字符設(shè)置為ch的值
函數(shù)返回: 指向s的指針
參數(shù)說明:
所屬文件: <string.h>
#include<stdio.h>
#include<string.h>
int main()
{
charstring[10]="123456789";
charsymbol='c';
printf("Before strset(): %s", string);
strset(string, symbol);
printf("After strset(): %s", string);
return 0;
}
@函數(shù)名稱: strtok
函數(shù)原型: char *strtok(char *s1, const char *s2)
函數(shù)功能: 分解s1字符串為用特定分隔符分隔的多個(gè)字符串(一般用于將英文句分解為單詞)
函數(shù)返回: 字符串s1中首次出現(xiàn)s2中的字符前的子字符串指針
參數(shù)說明: s2一般設(shè)置為s1中的分隔字符
規(guī)定進(jìn)行子調(diào)用時(shí)(即分割s1的第二、三及后續(xù)子串)第一參數(shù)必須是NULL
在每一次匹配成功后,將s1中分割出的子串位置替換為NULL(摘下鏈中第一個(gè)環(huán)),因此s1被破壞了
函數(shù)會(huì)記憶指針位置以供下一次調(diào)用
所屬文件: <string.h>
#include<string.h>
#include<stdio.h>
int main()
{
char *p;
char*buffer;
char*delims={ " .," };
buffer=strdup("Find words, all of them.");
printf("%s\n",buffer);
p=strtok(buffer,delims);
while(p!=NULL){
printf("word: %s\n",p);
p=strtok(NULL,delims);
}
printf("%s\n",buffer);
return 0;
}//根據(jù)測試,可以隨時(shí)給strtok的第一個(gè)參數(shù)輸入一個(gè)新的字符串,開始新字符串的分隔
PS:根據(jù)測試,可以隨時(shí)給strtok的第一個(gè)參數(shù)輸入一個(gè)新的字符串,開始新字符串的分隔
@函數(shù)名稱: strupr
函數(shù)原型: char *strupr(char *s)
函數(shù)功能: 將字符串s中的字符變?yōu)榇髮?
函數(shù)返回:
參數(shù)說明:
所屬文件: <string.h>
#include <stdio.h>
#include <string.h>
int main()
{
char string[]="abcdefghijklmnopqrstuvwxyz",*ptr; //會(huì)影響原字符串的內(nèi)存,用char[]來聲明
ptr=strupr(string);
printf("%s",ptr);
return 0;
}
@函數(shù)名稱: strlwr
函數(shù)原型: char *strlwr(char *s)
函數(shù)功能: 將字符串中的字符變?yōu)樾懽址?
函數(shù)返回: 指向s的指針
參數(shù)說明:
所屬文件: <string.h>
#include<string.h>
int main()
{
char str[]="HOW TO SAY?";
printf("%s",strlwr(str));
return 0;
}
@函數(shù)名稱: strerror
函數(shù)原型: char *strerror(int errnum)
函數(shù)功能: 得到錯(cuò)誤信息的內(nèi)容信息
函數(shù)返回: 錯(cuò)誤提示信息字符串指針
參數(shù)說明: errnum-錯(cuò)誤編號(hào)
所屬文件: <string.h>
#include <stdio.h>
#include <errno.h>
int main()
{
char *buffer;
buffer=strerror(errno);
printf("Error: %s",buffer);
return 0;
}
@函數(shù)名稱: memcpy
函數(shù)原型: void *memcpy(void *dest, const void *src, size_t n)
函數(shù)功能: 字符串拷貝
函數(shù)返回: 指向dest的指針
參數(shù)說明: src-源字符串,n-拷貝的最大長度
所屬文件: <string.h>,<mem.h>
#include <stdio.h>
#include <string.h>
int main()
{
char src[]="******************************";
char dest[]="abcdefghijlkmnopqrstuvwxyz0123456709";
char *ptr;
printf("destination before memcpy:%s\n",dest);
ptr=memcpy(dest,src,strlen(src));
if (ptr)
printf("destination after memcpy:%s\n",dest);
else
printf("memcpy failed");
return 0;
}
輸出:
/*************************************************************
destination before memcpy:abcdefghijlkmnopqrstuvwxyz0123456709
destination after memcpy:******************************456709
**************************************************************/
@函數(shù)名稱: memccpy
函數(shù)原型: void *memccpy(void *dest, const void *src, int c, size_t n)
函數(shù)功能: 字符串拷貝,到指定長度或遇到指定字符時(shí)停止拷貝
函數(shù)返回:
參數(shù)說明: src-源字符串指針,c-中止拷貝檢查字符,n-長度,dest-拷貝底目的字符串指針
所屬文件: <string.h>,<mem.h>
#include <string.h>
#include <stdio.h>
int main()
{
char *src="This is the source string";
char dest[50];
char *ptr;
ptr=memccpy(dest,src,'c',strlen(src));
if (ptr)
{
*ptr='\0';
printf("The character wasfound:%s",dest);
}
else
printf("The character wasn'tfound");
return 0;
}
輸出:
/*****************************************
The character was found:This is the sourc
*****************************************/
PS:指定字符被復(fù)制到dest中,memccpy返回了dest中指定字符的下一處的地址,返回NULL表示未遇到指定字符
@函數(shù)名稱: memchr
函數(shù)原型: void *memchr(const void *s, int c, size_t n)
函數(shù)功能: 在字符串中第開始n個(gè)字符中尋找某個(gè)字符c的位置
函數(shù)返回: 返回c的位置指針,返回NULL時(shí)表示未找到
參數(shù)說明: s-要搜索的字符串,c-要尋找的字符,n-指定長度
所屬文件: <string.h>,<mem.h>
#include <string.h>
#include <stdio.h>
int main()
{
char str[17];
char *ptr;
strcpy(str,"This is a string");
ptr=memchr(str,'r',strlen(str));
if (ptr)
printf("The character 'r' is at position:%d",ptr-str);
else
printf("The character was not found");
return 0;
}
@函數(shù)名稱: memcmp
函數(shù)原型: int memcmp(const void *s1, const void *s2,size_t n)
函數(shù)功能: 按字典順序比較兩個(gè)串s1和s2的前n個(gè)字節(jié)
函數(shù)返回: <0,=0,>0分別表示s1<,=,>s2
參數(shù)說明: s1,s2-要比較的字符串,n-比較的長度
所屬文件: <string.h>,<mem.h>
#include <stdio.h>
#include <string.h>
int main()
{
char *buf1="ABCDE123";
char *buf2="abcde456";
int stat;
stat=memcmp(buf1,buf2,5);
printf("The strings to position 5 are");
if(stat) printf("not ");
printf("the same\n");
return 0;
}
@函數(shù)名稱: memicmp
函數(shù)原型: int memicmp(const void *s1, const void *s2, size_t n)
函數(shù)功能: 按字典順序、不考慮字母大小寫對(duì)字符串s1,s2前n個(gè)字符比較
函數(shù)返回: <0,=0,>0分別表示s1<,=,>s2
參數(shù)說明: s1,s2-要比較的字符串,n-比較的長度
所屬文件: <string.h>,<mem.h>
#include <stdio.h>
#include <string.h>
int main()
{
char *buf1="ABCDE123";
char *buf2="abcde456";
int stat;
stat=memicmp(buf1,buf2,5);
printf("The strings to position 5 are");
if(stat) printf("not");
printf("the same");
return 0;
}
輸出:
/**************************************
The strings to position 5 are the same
***************************************/
@函數(shù)名稱: memmove
函數(shù)原型: void *memmove(void *dest, const void *src, size_t n)
函數(shù)功能: 字符串拷貝
函數(shù)返回: 指向dest的指針
參數(shù)說明: src-源字符串,n-拷貝的最大長度
所屬文件: <string.h>,<mem.h>
#include <string.h>
#include <stdio.h>
int main()
{
chardest[40]="abcdefghijklmnopqrstuvwxyz0123456789";
printf("destination prior tomemmove:%s\n",dest);
memmove(dest+1,dest,35);
printf("destination aftermemmove:%s",dest);
return 0;
}
PS:與memcpy不同的是,memmove可以處理目的字符串與源字符串地址空間出現(xiàn)重疊的情況,可保證待復(fù)制的內(nèi)容不被破壞。
@函數(shù)名稱: memset
函數(shù)原型: void *memset(void *s, int c, size_t n)
函數(shù)功能: 字符串中的n個(gè)字節(jié)內(nèi)容設(shè)置為c
函數(shù)返回:
參數(shù)說明: s-要設(shè)置的字符串,c-設(shè)置的內(nèi)容,n-長度
所屬文件: <string.h>,<mem.h>
#include <string.h>
#include <stdio.h>
#include <mem.h>
int main()
{
charbuffer[]="Hello world";
printf("Buffer before memset:%s/n",buffer);
memset(buffer,'*',strlen(buffer)-1);
printf("Buffer after memset:%s",buffer);
return 0;
}
@函數(shù)原型: char *strdup(const char *s)
函數(shù)功能: 字符串拷貝,目的空間由該函數(shù)分配
函數(shù)返回: 指向拷貝后的字符串指針
參數(shù)說明: src-待拷貝的源字符串
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include <stdio.h>
#include <string.h>
#include <alloc.h>
int main()
{
char *dup_str, *string="abcde";
dup_str=strdup(string);
printf("%s", dup_str);
free(dup_str);
return 0;
}
@函數(shù)名稱: strcpy
函數(shù)原型: char* strcpy(char* str1,char* str2);
函數(shù)功能: 把str2指向的字符串拷貝到str1中去
函數(shù)返回: 返回str1,即指向str1的指針
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include <stdio.h>
#include <string.h>
int main()
{
char string[10];
char *str1="abcdefghi";
strcpy(string,str1);
printf("the string is:%s\n",string);
return 0;
}
@函數(shù)名稱: strncpy
函數(shù)原型: char *strncpy(char *dest, const char *src,intcount)
函數(shù)功能: 將字符串src中的count個(gè)字符拷貝到字符串dest中去
函數(shù)返回: 指向dest的指針
參數(shù)說明: dest-目的字符串,src-源字符串,count-拷貝的字符個(gè)數(shù)
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<stdio.h>
#include<string.h>
int main()
{
char*src = "bbbbbbbbbbbbbbbbbbbb";//20 'b's
char dest[50] ="aaaaaaaaaaaaaaaaaaaa";//20 'a's
puts(dest);
strncpy(dest, src, 10);
puts(dest);
return0;
}
輸出:
復(fù)制代碼 代碼如下:
/*******************************************
aaaaaaaaaaaaaaaaaaaa
bbbbbbbbbbaaaaaaaaaa
*******************************************/
注意:strncpy只復(fù)制指定長度的字符,不會(huì)自動(dòng)在末尾加'\0'。若指定長度超過源字符串長度,不夠的部分補(bǔ)‘\0',
@函數(shù)名稱: strcat
函數(shù)原型: char* strcat(char * str1,char * str2);
函數(shù)功能: 把字符串str2接到str1后面,str1最后的'\0'被取消
函數(shù)返回: str1
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include <stdio.h>
#include <string.h>
int main()
{
char buffer[80];
strcpy(buffer,"Hello ");
strcat(buffer,"world");
printf("%s\n",buffer);
return 0;
}
@函數(shù)名稱: strncat
函數(shù)原型: char *strncat(char *dest, const char *src, size_t maxlen)
函數(shù)功能: 將字符串src中前maxlen個(gè)字符連接到dest中
函數(shù)返回:
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include <stdio.h>
#include <string.h>
char buffer[80];
int main()
{
strcpy(buffer,"Hello ");
strncat(buffer,"world",8);
printf("%s\n",buffer);
strncat(buffer,"*************",4);
printf("%s\n",buffer);
return 0;
}
注意:與strncpy不同的是,strncat會(huì)自動(dòng)在末尾加‘\0',若指定長度超過源字符串長度,則只復(fù)制源字符串長度即停止
@函數(shù)名稱: strcmp
函數(shù)原型: int strcmp(char * str1,char * str2);
函數(shù)功能: 比較兩個(gè)字符串str1,str2.
函數(shù)返回: str1<str2,返回負(fù)數(shù);str1=str2,返回 0;str1>str2,返回正數(shù).
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include <string.h>
#include <stdio.h>
int main()
{
char *buf1="aaa", *buf2="bbb",*buf3="ccc";
int ptr;
ptr=strcmp(buf2, buf1);
if(ptr>0)
printf("buffer 2 is greater thanbuffer 1\n");
else
printf("buffer 2 is less thanbuffer 1\n");
ptr=strcmp(buf2, buf3);
if(ptr>0)
printf("buffer 2 is greater thanbuffer 3\n");
else
printf("buffer 2 is less thanbuffer 3\n");
return 0;
}
@函數(shù)名稱: strncmp
函數(shù)原型: int strncmp(char *str1,char *str2,int count)
函數(shù)功能: 對(duì)str1和str2中的前count個(gè)字符按字典順序比較
函數(shù)返回: 小于0:str1<str2,等于0:str1=str2,大于0:str1>str2
參數(shù)說明: str1,str2-待比較的字符串,count-比較的長度
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<string.h>
#include<stdio.h>
int main()
{
char str1[] ="aabbc";//
char str2[] = "abbcd";//
//為使測試程序更簡練,此處假定了strncmp只返回-1,0,1三個(gè)數(shù)
char res_info[] = {'<','=','>'};
int res;
//前1個(gè)字符比較
res = strncmp(str1, str2, 1);
printf("1:str1%c str2\n", res_info[res+1]);
//前3個(gè)字符比較
res = strncmp(str1, str2, 3);
printf("3:str1%c str2\n", res_info[res+1]);
}
輸出:
復(fù)制代碼 代碼如下:
/****************************************
1:str1= str2
3:str1< str2
*****************************************/
@函數(shù)名稱: strpbrk
函數(shù)原型: char *strpbrk(const char *s1, const char *s2)
函數(shù)功能: 得到s1中第一個(gè)“同時(shí)也出現(xiàn)在s2中”字符的位置指針
函數(shù)返回: 位置指針
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<stdio.h>
#include<string.h>
int main()
{
char *p="Find all vowels";
p=strpbrk(p+1,"aeiouAEIOU");
while(p)
{
printf("%s\n",p);
p=strpbrk(p+1,"aeiouAEIOU");
}
return 0;
}
輸出:
復(fù)制代碼 代碼如下:
/**************************************
ind all vowels
all vowels
owels
els
**************************************/
@函數(shù)名稱: strcspn
函數(shù)原型: int strcspn(const char *s1, const char *s2)
函數(shù)功能: 統(tǒng)計(jì)s1中從頭開始直到第一個(gè)“來自s2中的字符”出現(xiàn)的長度
函數(shù)返回: 長度
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<stdio.h>
#include<string.h>
int main()
{
printf("%d\n",strcspn("abcbcadef","cba"));
printf("%d\n",strcspn("xxxbcadef","cba"));
printf("%d\n",strcspn("123456789","cba"));
return 0;
}
輸出:
復(fù)制代碼 代碼如下:
/************************
0
3
9
************************/
@函數(shù)名稱: strspn
函數(shù)原型: int strspn(const char *s1, const char *s2)
函數(shù)功能: 統(tǒng)計(jì)s1中從頭開始直到第一個(gè)“不來自s2中的字符”出現(xiàn)的長度
函數(shù)返回: 位置指針
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<stdio.h>
#include<string.h>
#include<alloc.h>
int main()
{
printf("%d\n",strspn("abcbcadef","cba"));
printf("%d\n",strspn("xxxbcadef","cba"));
printf("%d\n",strspn("123456789","cba"));
return 0;
}
輸出:
復(fù)制代碼 代碼如下:
/************************
6
0
0
************************/
@函數(shù)名稱: strchr
函數(shù)原型: char* strchr(char* str,char ch);
函數(shù)功能: 找出str指向的字符串中第一次出現(xiàn)字符ch的位置
函數(shù)返回: 返回指向該位置的指針,如找不到,則返回空指針
參數(shù)說明: str-待搜索的字符串,ch-查找的字符
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<string.h>
#include<stdio.h>
int main()
{
char *str = "This is a string!";
char ch;
char *p;
while(1)
{
printf("Please input a char:");
ch = getchar();
p = strchr(str, ch);
if(p)
printf("%c is the %d character of\"%s\"\n",ch, (int)(p-str+1),str);
else
printf("Not found!\n");
printf("Press ESC to quit!\n\n");
if(27 == getch())
break;
fflush(stdin);
}
return 0;
}
運(yùn)行結(jié)果:
復(fù)制代碼 代碼如下:
/********************************************
Please input achar:i
i is the 3character of "This is a string!"
Press ESC to quit!
Please input achar:l
Not found!
Press ESC to quit!
Please input achar:s
s is the 4character of "This is a string!"
Press ESC to quit!
**********************************************/
@函數(shù)名稱: strrchr
函數(shù)原型: char *strrchr(const char *s, int c)
函數(shù)功能: 得到字符串s中最后一個(gè)含有c字符的位置指針
函數(shù)返回: 位置指針
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<string.h>
#include<stdio.h>
int main()
{
charstring[15];
char*ptr,c='r';
strcpy(string,"This is a string");
ptr=strrchr(string,c);
if (ptr)
printf("The character %c is at position:%d",c,ptr-string);
else
printf("The character was not found");
return 0;
}
@函數(shù)名稱: strstr
函數(shù)原型: char* strstr(char* str1,char* str2);
函數(shù)功能: 找出str2字符串在str1字符串中第一次出現(xiàn)的位置(不包括str2的串結(jié)束符)
函數(shù)返回: 返回該位置的指針,如找不到,返回空指針
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<stdio.h>
#include<string.h>
int main()
{
char*str1="Open Watcom C/C++",*str2="Watcom",*ptr;
ptr=strstr(str1,str2);
printf("The substring is:%s\n",ptr);
return 0;
}
輸出:
The substringis:Watcom C/C++
@函數(shù)名稱: strrev
函數(shù)原型: char *strrev(char *s)
函數(shù)功能: 將字符串中的所有字符顛倒次序排列
函數(shù)返回: 指向s的指針
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<string.h>
#include<stdio.h>
int main()
{
char forward[]="string"; //原文中定義為char*是不對(duì)的,指向代碼段的指針內(nèi)容是不可變的
printf("Before strrev():%s",forward);
strrev(forward);
printf("Afterstrrev(): %s",forward);
return 0;
}
輸出:
復(fù)制代碼 代碼如下:
/************************************
Beforestrrev():string
After strrev():gnirts
************************************/
@函數(shù)名稱: strnset
函數(shù)原型: char *strnset(char *s, int ch, size_t n)
函數(shù)功能: 將字符串s中前n個(gè)字符設(shè)置為ch的值
函數(shù)返回: 指向s的指針
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<stdio.h>
#include<string.h>
int main()
{
charstring[]="aaaaaaaaaaaaaaaaaaaaaaa";
char letter='x';
printf("string before strnset:%s\n",string);
strnset(string,letter,10);
printf("string after strnset: %s\n",string);
return 0;
}
輸出:
復(fù)制代碼 代碼如下:
/*************************************************
string beforestrnset: aaaaaaaaaaaaaaaaaaaaaaa
string afterstrnset: xxxxxxxxxxaaaaaaaaaaaaa
*************************************************/
@函數(shù)名稱: strset
函數(shù)原型: char *strset(char *s, int ch)
函數(shù)功能: 將字符串s中所有字符設(shè)置為ch的值
函數(shù)返回: 指向s的指針
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<stdio.h>
#include<string.h>
int main()
{
charstring[10]="123456789";
charsymbol='c';
printf("Before strset(): %s", string);
strset(string, symbol);
printf("After strset(): %s", string);
return 0;
}
@函數(shù)名稱: strtok
函數(shù)原型: char *strtok(char *s1, const char *s2)
函數(shù)功能: 分解s1字符串為用特定分隔符分隔的多個(gè)字符串(一般用于將英文句分解為單詞)
函數(shù)返回: 字符串s1中首次出現(xiàn)s2中的字符前的子字符串指針
參數(shù)說明: s2一般設(shè)置為s1中的分隔字符
規(guī)定進(jìn)行子調(diào)用時(shí)(即分割s1的第二、三及后續(xù)子串)第一參數(shù)必須是NULL
在每一次匹配成功后,將s1中分割出的子串位置替換為NULL(摘下鏈中第一個(gè)環(huán)),因此s1被破壞了
函數(shù)會(huì)記憶指針位置以供下一次調(diào)用
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<string.h>
#include<stdio.h>
int main()
{
char *p;
char*buffer;
char*delims={ " .," };
buffer=strdup("Find words, all of them.");
printf("%s\n",buffer);
p=strtok(buffer,delims);
while(p!=NULL){
printf("word: %s\n",p);
p=strtok(NULL,delims);
}
printf("%s\n",buffer);
return 0;
}//根據(jù)測試,可以隨時(shí)給strtok的第一個(gè)參數(shù)輸入一個(gè)新的字符串,開始新字符串的分隔
PS:根據(jù)測試,可以隨時(shí)給strtok的第一個(gè)參數(shù)輸入一個(gè)新的字符串,開始新字符串的分隔
@函數(shù)名稱: strupr
函數(shù)原型: char *strupr(char *s)
函數(shù)功能: 將字符串s中的字符變?yōu)榇髮?
函數(shù)返回:
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include <stdio.h>
#include <string.h>
int main()
{
char string[]="abcdefghijklmnopqrstuvwxyz",*ptr; //會(huì)影響原字符串的內(nèi)存,用char[]來聲明
ptr=strupr(string);
printf("%s",ptr);
return 0;
}
@函數(shù)名稱: strlwr
函數(shù)原型: char *strlwr(char *s)
函數(shù)功能: 將字符串中的字符變?yōu)樾懽址?
函數(shù)返回: 指向s的指針
參數(shù)說明:
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include<string.h>
int main()
{
char str[]="HOW TO SAY?";
printf("%s",strlwr(str));
return 0;
}
@函數(shù)名稱: strerror
函數(shù)原型: char *strerror(int errnum)
函數(shù)功能: 得到錯(cuò)誤信息的內(nèi)容信息
函數(shù)返回: 錯(cuò)誤提示信息字符串指針
參數(shù)說明: errnum-錯(cuò)誤編號(hào)
所屬文件: <string.h>
復(fù)制代碼 代碼如下:
#include <stdio.h>
#include <errno.h>
int main()
{
char *buffer;
buffer=strerror(errno);
printf("Error: %s",buffer);
return 0;
}
@函數(shù)名稱: memcpy
函數(shù)原型: void *memcpy(void *dest, const void *src, size_t n)
函數(shù)功能: 字符串拷貝
函數(shù)返回: 指向dest的指針
參數(shù)說明: src-源字符串,n-拷貝的最大長度
所屬文件: <string.h>,<mem.h>
復(fù)制代碼 代碼如下:
#include <stdio.h>
#include <string.h>
int main()
{
char src[]="******************************";
char dest[]="abcdefghijlkmnopqrstuvwxyz0123456709";
char *ptr;
printf("destination before memcpy:%s\n",dest);
ptr=memcpy(dest,src,strlen(src));
if (ptr)
printf("destination after memcpy:%s\n",dest);
else
printf("memcpy failed");
return 0;
}
輸出:
復(fù)制代碼 代碼如下:
/*************************************************************
destination before memcpy:abcdefghijlkmnopqrstuvwxyz0123456709
destination after memcpy:******************************456709
**************************************************************/
@函數(shù)名稱: memccpy
函數(shù)原型: void *memccpy(void *dest, const void *src, int c, size_t n)
函數(shù)功能: 字符串拷貝,到指定長度或遇到指定字符時(shí)停止拷貝
函數(shù)返回:
參數(shù)說明: src-源字符串指針,c-中止拷貝檢查字符,n-長度,dest-拷貝底目的字符串指針
所屬文件: <string.h>,<mem.h>
復(fù)制代碼 代碼如下:
#include <string.h>
#include <stdio.h>
int main()
{
char *src="This is the source string";
char dest[50];
char *ptr;
ptr=memccpy(dest,src,'c',strlen(src));
if (ptr)
{
*ptr='\0';
printf("The character wasfound:%s",dest);
}
else
printf("The character wasn'tfound");
return 0;
}
輸出:
復(fù)制代碼 代碼如下:
/*****************************************
The character was found:This is the sourc
*****************************************/
PS:指定字符被復(fù)制到dest中,memccpy返回了dest中指定字符的下一處的地址,返回NULL表示未遇到指定字符
@函數(shù)名稱: memchr
函數(shù)原型: void *memchr(const void *s, int c, size_t n)
函數(shù)功能: 在字符串中第開始n個(gè)字符中尋找某個(gè)字符c的位置
函數(shù)返回: 返回c的位置指針,返回NULL時(shí)表示未找到
參數(shù)說明: s-要搜索的字符串,c-要尋找的字符,n-指定長度
所屬文件: <string.h>,<mem.h>
復(fù)制代碼 代碼如下:
#include <string.h>
#include <stdio.h>
int main()
{
char str[17];
char *ptr;
strcpy(str,"This is a string");
ptr=memchr(str,'r',strlen(str));
if (ptr)
printf("The character 'r' is at position:%d",ptr-str);
else
printf("The character was not found");
return 0;
}
@函數(shù)名稱: memcmp
函數(shù)原型: int memcmp(const void *s1, const void *s2,size_t n)
函數(shù)功能: 按字典順序比較兩個(gè)串s1和s2的前n個(gè)字節(jié)
函數(shù)返回: <0,=0,>0分別表示s1<,=,>s2
參數(shù)說明: s1,s2-要比較的字符串,n-比較的長度
所屬文件: <string.h>,<mem.h>
復(fù)制代碼 代碼如下:
#include <stdio.h>
#include <string.h>
int main()
{
char *buf1="ABCDE123";
char *buf2="abcde456";
int stat;
stat=memcmp(buf1,buf2,5);
printf("The strings to position 5 are");
if(stat) printf("not ");
printf("the same\n");
return 0;
}
@函數(shù)名稱: memicmp
函數(shù)原型: int memicmp(const void *s1, const void *s2, size_t n)
函數(shù)功能: 按字典順序、不考慮字母大小寫對(duì)字符串s1,s2前n個(gè)字符比較
函數(shù)返回: <0,=0,>0分別表示s1<,=,>s2
參數(shù)說明: s1,s2-要比較的字符串,n-比較的長度
所屬文件: <string.h>,<mem.h>
復(fù)制代碼 代碼如下:
#include <stdio.h>
#include <string.h>
int main()
{
char *buf1="ABCDE123";
char *buf2="abcde456";
int stat;
stat=memicmp(buf1,buf2,5);
printf("The strings to position 5 are");
if(stat) printf("not");
printf("the same");
return 0;
}
輸出:
復(fù)制代碼 代碼如下:
/**************************************
The strings to position 5 are the same
***************************************/
@函數(shù)名稱: memmove
函數(shù)原型: void *memmove(void *dest, const void *src, size_t n)
函數(shù)功能: 字符串拷貝
函數(shù)返回: 指向dest的指針
參數(shù)說明: src-源字符串,n-拷貝的最大長度
所屬文件: <string.h>,<mem.h>
復(fù)制代碼 代碼如下:
#include <string.h>
#include <stdio.h>
int main()
{
chardest[40]="abcdefghijklmnopqrstuvwxyz0123456789";
printf("destination prior tomemmove:%s\n",dest);
memmove(dest+1,dest,35);
printf("destination aftermemmove:%s",dest);
return 0;
}
PS:與memcpy不同的是,memmove可以處理目的字符串與源字符串地址空間出現(xiàn)重疊的情況,可保證待復(fù)制的內(nèi)容不被破壞。
@函數(shù)名稱: memset
函數(shù)原型: void *memset(void *s, int c, size_t n)
函數(shù)功能: 字符串中的n個(gè)字節(jié)內(nèi)容設(shè)置為c
函數(shù)返回:
參數(shù)說明: s-要設(shè)置的字符串,c-設(shè)置的內(nèi)容,n-長度
所屬文件: <string.h>,<mem.h>
復(fù)制代碼 代碼如下:
#include <string.h>
#include <stdio.h>
#include <mem.h>
int main()
{
charbuffer[]="Hello world";
printf("Buffer before memset:%s/n",buffer);
memset(buffer,'*',strlen(buffer)-1);
printf("Buffer after memset:%s",buffer);
return 0;
}
相關(guān)文章
LeetCode題解C++生成每種字符都是奇數(shù)個(gè)的字符串
這篇文章主要為大家介紹了LeetCode題解C++生成每種字符都是奇數(shù)個(gè)的字符串示例,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-10-10C++調(diào)用matlab函數(shù)的實(shí)例
這篇文章主要介紹了C++調(diào)用matlab函數(shù)的方法,包括封裝matlab函數(shù),編譯matlab函數(shù)及C++環(huán)境配置,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),需要的朋友可以參考下2022-08-08