字符串库函数都需要引入头文件#include
strlen是C语言提供的求字符串长度的库函数,它的参数是一个字符指针,可以给它传递数组名和字符串。
size_t strlen ( const char * str );
注意:
size_t
,也就是无符号整形。\0
为结束标志,只要遇到\0
它就会停止计算,且长度不包阔\0
strlen模拟实现
使用了两种方法模拟实现
\0
就会跳出循环#include
size_t my_strlen(const char* str)
{
//断言为条件为假报错
assert(str != NULL);
size_t count = 0;
while (*str++)
{
count++;
}
return count;
}
//指针相减法
size_t myStrlen(const char* str)
{
assert(str != NULL);
const char* start = str;
while (*str++)
{
}
return str - start - 1;
}
strcpy是C语言提供的字符串拷贝的库函数,它由两个参数
char*
,它返回的目的地的起始地址,也就是destinationchar * strcpy ( char * destination, const char * source );
注意:
\0
结束,因为该函数会把\0
也给拷贝过去strcpy函数模拟实现
#include
char* my_strcpy(char* destination, const char* source)
{
assert(destination && source);//只要有一个为NULL就触发断言
char* start = destination;//记录起始位置方便返回
while (*destination++ = *source++)
{}
return start;
}
strcat是C语言提供的字符串追加函数,它的作用就是把一个字符串拼接到另外一个字符串的末尾。
它有两个参数
char * strcat ( char * destination, const char * source );
注意:
\0
结尾\0
拷贝过去,它只是遇到\0
就停止追加\0
开始最佳,此时就会把\0
给覆盖,就会出现没有终止条件的情况strcat函数模拟实现
#include
char* my_strcat(char* destination, const char* source)
{
assert(destination && source);//只要有一个为NULL就触发断言
char* start = destination;
while (*destination++)
{
//找到\0就跳出循环
}
destination--;
while (*destination++ = *source++)
{ }
return start;
}
strcmp是C语言提供的字符串比较函数,它经常用来比较两个字符串是否相等。
int strcmp ( const char * str1, const char * str2 );
返回值 | 表示 |
---|---|
<0 | 第一个不匹配的字符中,str1的ASCII码值小于str2的ASCII码值时 |
0 | 两个字符串的所有内容相等 |
>0 | 第一个不匹配的字符中,str1的ASCII码值大于str2的ASCII码值时 |
注意:C语言标准规定
strcmp函数模拟实现
#include
int my_strcmp(const char* str1, const char* str2)
{
assert(str1 && str2);
while (*str1 == *str2)
{
if (*str1 == '\0')
{
//说明它们两个同时等于\0
return 0;
}
str1++;
str2++;
}
//只有不相等的情况才会跳出循环
return *str1 - *str2;
}
strncpy也是C语言提供的字符串拷贝函数,它和strcpy的区别是它可以指定拷贝字符的数量,不像strcpy使劲往下拷,要遇到\0
才结束,也就是说它更安全一点。它有三个参数
char * strncpy ( char * destination, const char * source, size_t num );
注意:
0
(C语言标准规定)\0
也会算做一个字符,也就是说拷贝前几个字符它不会自动补\0
strncpy 函数模拟实现
#include
char* my_strncpy(char* destination, const char* source, size_t num)
{
assert(destination && source);
char* ret = destination;
while ((*destination++ = *source++) != '\0' && num > 0)
{
--num;
}
while (num)
{
*destination = '\0';
num--;
}
return ret;
}
strncat也是C语言提供的库函数,用来字符串追加,和strcat不同的是它可以指定追加指定个数的字符。
char * strncat ( char * destination, const char * source, size_t num );
注意:
\0
就停止strncat函数模拟实现
C语言标准规定
\0
\0
就停止#include
char* my_strncat(char* destination, const char* source, size_t num)
{
assert(destination && source);
char* ret = destination;
//找\0
while (*destination++)
{ }
destination--;
while (num-- && (*destination++ = *source++))
{
//个数到0或者已经拷贝到\0就停止
}
//标准规定末尾补上\0
*destination = '\0';
return ret;
}
strncmp也是C语言提供的字符串比较函数,和strcmp不同的是它可以指定比较几个字符。而不是一直往后比较。
int strncmp ( const char * str1, const char * str2, size_t num );
注意:
返回值 | 表示 |
---|---|
<0 | 第一个不匹配的字符中,str1的ASCII码值小于str2的ASCII码值时 |
0 | 两个字符串的所有内容相等 |
>0 | 第一个不匹配的字符中,str1的ASCII码值大于str2的ASCII码值时 |
strncmp函数模拟实现
#include
int my_strncmp(const char* str1, const char* str2, size_t num)
{
//一个为NULL就触发断言
assert(str1 && str2);
while (num && (*str1 == *str2))
{
if (*str1 == '\0')
{
//说明它们都走到了\0处
return 0;
}
num--;
str1++;
str2++;
}
return *str1 - *str2;
}
strstr函数是C语言提供的字符串查找函数,在一个字符串中查找另外一个字符串是否是该字符串的子串。
char * strstr (char * str1, const char * str2 );
strstr函数模拟实现
#include
char* my_strstr(const char* s1, const char* s2)
{
//一个为NULL就触发断言
assert(s1 && s2);
if (s2 == '\0')
{
return (char*)s1;
}
const char* start = NULL;
const char* ptr1 = s1;
const char* ptr2 = s2;
while (*ptr1 != '\0')
{
start = ptr1;//记录str的位置
//非0即为真
while ((*ptr1) && (*ptr2) && (*ptr1 == *ptr2))
{
ptr1++;
ptr2++;
}
//说明到要找的字符串存在
if (*ptr2 == '\0')
{
return (char*)start;
}
ptr1 = start + 1;
ptr2 = s2;
}
return NULL;
}
strtok是C语言提供的字符串分割函数
char * strtok ( char * str, const char * sep );
基本使用
#include
#include
int main()
{
char s1[] = "10086@hhy#18";
char* s2 = "@#";
char* index = strtok(s1, s2);
while (index != NULL)
{
printf("%s\n", index);
index = strtok(NULL, s2);
}
return 0;
}
strerror是C语言提供的返回错误信息的函数,每个库函数在使用的时候,如果发送错误,都会有对应的错误码。
这些错误码一般都被存放于errno
这个全局变量中。在#include
,这个头文件中定义了很多的错误码
char * strerror ( int errnum );
#include
#include
#include
int main()
{
FILE* file = fopen("test.txt", "r");
if (file == NULL)
{
printf("%s\n", strerror(errno));
}
return 0;
}