字符串操作库函数
1、strcpy
//把字符串str2(包括'\0')拷贝到字符串str1当中,并返回str1。
char *strcpy(char *str1, const char *str2);
#include <stdio.h>
#include <string.h>
int main()
{
char *res;
char s1[20];
char *s2 = "slander";
res = strcpy(s1, s2);
printf("res = %s", res);
return 0;
}
// res = slander
2、strncpy
char *strncpy(char *str1, const char *str2, size_t count);
把字符串str2中最多count个字符拷贝到字符串str1中,并返回str1。如果str2中少于count个字符,那么就用'\0'来填充,直到满足count个字符为止。
#include <stdio.h>
#include <string.h>
int main()
{
char *res;
char s1[20];
char *s2 = "slander";
res = strncpy(s1, s2, 3);
printf("res = %s", res);
return 0;
}
// res = sla
3、strcat
char *strcat(char *str1, const char *str2);
把str2(包括'\0')拷贝到str1的尾部(连接),并返回str1。其中终止原str1的'\0'被str2的第一个字符覆盖。
#include <stdio.h>
#include <string.h>
int main()
{
char s1[20] = "Jack ";
char *s2 = "scores";
strcat(s1, s2);
printf("s1 = %s", s1);
return 0;
}
//s1 = Jack scores
4、strncat
char *strncat(char *str1, const char *str2, size_t count);
把str2中最多count个字符连接到str1的尾部,并以'\0'终止str1,返回str1。其中终止原str1的'\0'被str2的第一个字符覆盖。
注意,最大拷贝字符数是count+1。
#include <stdio.h>
#include <string.h>
int main()
{
char s1[20] = "Jack ";
char *s2 = "scores";
strncat(s1, s2, 3);
printf("s1 = %s", s1);
return 0;
}
//s1 = Jack sco
5、strcmp
int strcmp(const char *str1, const char *str2);
按字典顺序比较两个字符串,返回整数值的意义如下:
小于0,str1小于str2;
等于0,str1等于str2;
大于0,str1大于str2;
#include <stdio.h>
#include <string.h>
int main()
{
int res;
char *s1 = "Jack";
char *s2 = "Jacm";
res = strcmp(s1, s2);
printf("res = %d", res);
return 0;
}
// res = -1
6、strncmp
int strncmp(const char *str1, const char *str2, size_t count);
同strcmp,除了最多比较count个字符。根据比较结果返回的整数值如下:
小于0,str1小于str2;
等于0,str1等于str2;
大于0,str1大于str2;
#include <stdio.h>
#include <string.h>
int main()
{
int res;
char *s1 = "Jack";
char *s2 = "Jacm";
res = strncmp(s1, s2, 3);
printf("res = %d", res);
return 0;
}
// res = 0
7、strchr
char *strchr(const char *str, int ch);
返回指向字符串str中字符ch第一次出现的位置的指针,如果str中不包含ch,则返回NULL。
#include <stdio.h>
#include <string.h>
int main()
{
char *res;
char *s1 = "Jacak";
char c = 'a';
res = strchr(s1, c);
printf("res = %s", res);
return 0;
}
// res = acak
8、strrchr
char *strrchr(const char *str, int ch);
返回指向字符串str中字符ch最后一次出现的位置的指针,如果str中不包含ch,则返回NULL。
#include <stdio.h>
#include <string.h>
int main()
{
char *res;
char *s1 = "Jacak";
char c = 'a';
res = strrchr(s1, c);
printf("res = %s", res);
return 0;
}
// res = ak
9、strspn
size_t strspn(const char *str1, const char *str2);
返回字符串str1中由字符串str2中字符构成的第一个子串的长度。
str1中的字符从index = 0开始在str2中查找,直到查不到结束
// 函数原型
int strspn(const char *s,const char *accept)
{
const char *p;
const char *a;
int count = 0;
for(p = s; *p != '\0'; ++p)
{
for (a = accept; *a != '\0'; ++a)
{
if (*p == *a)
break;
}
if (*a == '\0')
return count;
++count;
}
return count;
}
#include <stdio.h>
#include <string.h>
int main()
{
int res;
char *s1 = "I am a student";
char *s2 = "I am not a teacher";
res = strspn(s1, s2);
printf("res = %d", res);
return 0;
}
// res = 7
10、 strcspn
size_t strcspn(const char *str1, const char *str2);
返回字符串str1中由不在字符串str2中字符构成的第一个子串的长度。
#include <stdio.h>
#include <string.h>
int main()
{
int res;
char *s1 = "I am a student";
char *s2 = "Jack am not a teacher";
res = strcspn(s1, s2);
printf("res = %d", res);
return 0;
}
//res = 1
11、 strpbrk
char *strpbrk(const char *str1, const char *str2);
返回指向字符串str2中的任意字符第一次出现在字符串str1中的位置的指针;如果str1中没有与str2相同的字符,那么返回NULL。
#include <stdio.h>
#include <string.h>
int main()
{
char* res;
char *s1 = "I am a student";
char *s2 = "Jack am not a teacher";
res = strpbrk(s1, s2);
printf("res = %s", res);
return 0;
}
//res = am a student
12、 strstr
char *strstr(const char *str1, const char *str2);
返回指向字符串str2第一次出现在字符串str1中的位置的指针;如果str1中不包含str2,则返回NULL。
#include <stdio.h>
#include <string.h>
int main()
{
char* res;
char *s1 = "I am a student";
char *s2 = "am";
res = strstr(s1, s2);
printf("res = %s", res);
return 0;
}
//res = am a student
13、strlen
size_t strlen(const char *str);
返回字符串str的长度,'\0'不算在内。
#include <stdio.h>
#include <string.h>
int main()
{
int res;
char *s1 = "I am a student";
res = strlen(s1);
printf("res = %d", res);
return 0;
}
// res = 14
14、strtok
char *strtok(char *str1, const char *str2);
在str1中搜索由str2中的分界符界定的单词。
对strtok()的一系列调用将把字符串str1分成许多单词,这些单词以str2中的字符为分界符。第一次调用时str1非空,它搜索str1,找出由非str2中的字符组成的第一个单词,将str1中的下一个字符替换为'\0',并返回指向单词的指针。随后的每次strtok()调用(参数str1用NULL代替),均从前一次结束的位置之后开始,返回下一个由非str2中的字符组成的单词。当str1中没有这样的单词时返回NULL。每次调用时字符串str2可以不同。
#include <string.h>
#include <stdio.h>
int main () {
char str[80] = "This is - www.runoob.com - website";
const char s[2] = "-";
char *token;
/* 获取第一个子字符串 */
token = strtok(str, s);
/* 继续获取其他的子字符串 */
while( token != NULL ) {
printf( "%s\n", token );
token = strtok(NULL, s);
}
return(0);
}
// This is
www.runoob.com
website
参考
https://www.cnblogs.com/kerwincui/p/14278444.html