C语⾔中string.h头⽂件中函数详解
PS:本⽂包含了⼤部分strings函数的说明,并附带举例说明。本来想⾃⼰整理⼀下的,发现已经有前辈整理过了,就转了过来。修改了原⽂⼀些源码的问题,主要是⽤char *字义字符串的问题,导致程序运⾏时崩溃。另外⾃⼰重写了部分测试程序,使其更能满⾜⾃⼰测试的需要。不当之处,还请海涵。
@函数原型: char *strdup(const char *s)
函数功能: 字符串拷贝,⽬的空间由该函数分配
函数返回: 指向拷贝后的字符串指针
参数说明: 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;
}
@函数名称: strcpy
函数原型: 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);
return 0;
}
@函数名称: strncpy
函数原型: char *strncpy(char *dest, const char *src,intcount)
函数功能: 将字符串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);
strncpy(dest, src, 10);
puts(dest);
return0;
}
输出:
/*******************************************
c++中string的用法aaaaaaaaaaaaaaaaaaaa
bbbbbbbbbbaaaaaaaaaa
*******************************************/
注意:strncpy只复制指定长度的字符,不会⾃动在末尾加'\0'。若指定长度超过源字符串长度,不够的部分补‘\0’,
@函数名称: strcat
函数原型: 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);
return 0;
}
@函数名称: strncat
函数原型: 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);
return 0;
}
注意:与strncpy不同的是,strncat会⾃动在末尾加‘\0’,若指定长度超过源字符串长度,则只复制源字符串长度即停⽌
@函数名称: strcmp
函数原型: int strcmp(char * str1,char * str2);
函数功能: ⽐较两个字符串str1,str2.
函数返回: str1<str2,返回负数;str1=str2,返回 0;str1>str2,返回正数.
参数说明:
所属⽂件: <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;
}
@函数名称: strncmp
函数原型: 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]);
//前3个字符⽐较
res = strncmp(str1, str2, 3);
printf("3:str1%c str2\n", res_info[res+1]);
}
/****************************************
1:str1= str2
3:str1< str2
*****************************************/
@函数名称: strpbrk
函数原型: char *strpbrk(const char *s1, const char *s2)
函数功能: 得到s1中第⼀个“同时也出现在s2中”字符的位置指针
函数返回: 位置指针
参数说明:
所属⽂件: <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
**************************************/
@函数名称: strcspn
函数原型: 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"));
printf("%d\n",strcspn("xxxbcadef","cba"));
printf("%d\n",strcspn("123456789","cba"));
return 0;
}
输出:
/************************
3
9
************************/
@函数名称: strspn
函数原型: 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"));
printf("%d\n",strspn("xxxbcadef","cba"));
printf("%d\n",strspn("123456789","cba"));
return 0;
}
输出:
/************************
6
************************/
@函数名称: strchr
函数原型: char* strchr(char* str,char ch);
函数功能: 出str指向的字符串中第⼀次出现字符ch的位置
函数返回: 返回指向该位置的指针,如不到,则返回空指针
参数说明: 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;
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论