c语⾔string.h中的函数详解char *strdup(const char *s)
函数功能: string duplicate字符串拷贝,⽬的空间由该函数分配
函数返回: 指向拷贝后的字符串指针
参数说明: 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);
return0;
}
char* strcpy(char* str1,char* str2)
函数功能: 把str2指向的字符串拷贝到str1中去
函数返回: 返回str1,即指向str1的指针
参数说明:
所属⽂件: <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);
return0;
}
char *strncpy(char *dest, const char *src,int count)
函数功能: 将字符串src中的count个字符拷贝到字符串dest中去
函数返回: 指向dest的指针
参数说明: dest-⽬的字符串,src-源字符串,count-拷贝的字符个数
所属⽂件: <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);//输出:aaaaaaaaaaaaaaaaaaaa
strncpy(dest, src,10);
puts(dest);//输出:bbbbbbbbbbaaaaaaaaaa
return0;
//注意:strncpy只复制指定长度的字符,不会⾃动在末尾加'\0'。
//若指定长度超过源字符串长度,不够的部分补‘\0’,
}
char* strcat(char * str1,char * str2)
函数功能: 把字符串str2接到str1后⾯,str1最后的’\0’被取消
函数返回: str1
参数说明:
所属⽂件: <string.h>
#include<stdio.h>
#include<string.h>
int main()
{
char buffer[80];
strcpy(buffer,"Hello ");
strcat(buffer,"world");
printf("%s\n",buffer);
return0;
}
char *strncat(char *dest, const char *src, size_t maxlen)
函数功能: 将字符串src中前maxlen个字符连接到dest中
函数返回:
参数说明:
所属⽂件: <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);
return0;
//注意:与strncpy不同的是,strncat会⾃动在末尾加‘\0’
//若指定长度超过源字符串长度,则只复制源字符串长度即停⽌
}
int strcmp(char * str1,char * str2)
函数功能: ⽐较两个字符串str1,str2.
函数返回: str1<str2,返回负数;str1=str2,返回 0;str1>str2,返回正数.
参数说明:
所属⽂件: <string.h>
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");
return0;
}
int strncmp(char *str1,char *str2,int count)
函数功能: 对str1和str2中的前count个字符按字典顺序⽐较
函数返回: ⼩于0:str1<str2,等于0:str1=str2,⼤于0:str1>str2参数说明: str1,str2-待⽐较的字符串,count-⽐较的长度
所属⽂件: <string.h>
#include<string.h>
#include<stdio.h>
int main()
{
char str1[]="aabbc";//
char str2[]="abbcd";//
//为使测试程序更简练,此处假定了strncmp只返回-1,0,1三个数
char res_info[]={'<','=','>'};
int res;
//前1个字符⽐较
res =strncmp(str1, str2,1);
printf("1:str1%c str2\n", res_info[res+1]);//输出:1:str1= str2
//前3个字符⽐较
res =strncmp(str1, str2,3);
printf("3:str1%c str2\n", res_info[res+1]);//输出:3:str1< str2
}
char *strpbrk(const char *s1, const char *s2)
函数功能: 得到s1中第⼀个“同时也出现在s2中”字符的位置指针
函数返回: 位置指针
参数说明:
所属⽂件: <string.h>
char*p="Find all vowels";
p=strpbrk(p+1,"aeiouAEIOU");
while(p)
{
printf("%s\n",p);
p=strpbrk(p+1,"aeiouAEIOU");
}
return0;
}
//输出:
//ind all vowels
//all vowels
/
/owels
//els
int strcspn(const char *s1, const char *s2)
函数功能: 统计s1中从头开始直到第⼀个“来⾃s2中的字符”出现的长度函数返回: 长度
参数说明:
所属⽂件: <string.h>
#include<stdio.h>
#include<string.h>
int main()
{
printf("%d\n",strcspn("abcbcadef","cba"));//输出:0
printf("%d\n",strcspn("xxxbcadef","cba"));//输出:3
printf("%d\n",strcspn("123456789","cba"));//输出:9
return0;
}
int strspn(const char *s1, const char *s2)
函数功能: 统计s1中从头开始直到第⼀个“不来⾃s2中的字符”出现的长度函数返回: 位置指针
参数说明:
所属⽂件: <string.h>
#include<stdio.h>
#include<string.h>
#include<alloc.h>
int main()
{
printf("%d\n",strspn("abcbcadef","cba"));//输出:6c++中string的用法
printf("%d\n",strspn("xxxbcadef","cba"));//输出:0
printf("%d\n",strspn("123456789","cba"));//输出:0
return0;
}
char* strchr(char* str,char ch);
函数功能: 出str指向的字符串中第⼀次出现字符ch的位置
函数返回: 返回指向该位置的指针,如不到,则返回空指针
参数说明: str-待搜索的字符串,ch-查的字符
所属⽂件: <string.h>
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);
}
return0;
}
/*输出:
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!
*/
char *strrchr(const char *s, int c)
函数功能: 得到字符串s中最后⼀个含有c字符的位置指针
函数返回: 位置指针
参数说明:
所属⽂件: <string.h>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。