strcmp
字符串比较
头文件:#include<string.h>
int strcmp(const char *s1, const char *s2)
int strncmp(const char *s1, const char *s2, size_t n)
返回值:
大于0,表示字符串 s1 大于字符串 s2
小于0,表示字符串 s1 小于字符串 s2
等于0,表示字符串 s1 等于字符串 s2
strchr
字符查找函数
头文件:#include<string.h>
char *strchr(const char *s, int c)
char *strrchr(const char *s, int c)
strchr 从前往后找,返回第一次出现 c 的地址,如果没有找到则返回NULL。strrchr是从后往前找
strstr
字符串查找
头文件:#include<string.h>
char *strstr(const char *haystack, const char* needle)
返回值:成功返回第一次找到的地址,失败返回NULL
标签:常用,const,函数,int,s2,s1,char,字符串 From: https://www.cnblogs.com/yachifeng/p/17201181.html