C语言:字符函数和字符串函数(一篇拿捏字符串函数!)

目录

求字符串长度:

[1. strlen(字符串长度)](#1. strlen(字符串长度))

长度不受限制函数:

[2. strcpy(字符串拷贝)](#2. strcpy(字符串拷贝))

[3. strcat(字符串追加)](#3. strcat(字符串追加))

[4. strcmp(字符串比较)](#4. strcmp(字符串比较))

长度受限制函数:

[5. strncpy(字符串拷贝)](#5. strncpy(字符串拷贝))

[6. strncat(字符串追加)](#6. strncat(字符串追加))

[7. strncmp(字符串比较)](#7. strncmp(字符串比较))

字符串查找:

[8. strstr(查找字符串子串)](#8. strstr(查找字符串子串))

[9. strtok(字符串分割)](#9. strtok(字符串分割))

错误信息报告:

[10. strerror(返回错误信息)](#10. strerror(返回错误信息))

字符操作函数:

字符转换:

[1. tolower(小写->大写)](#1. tolower(小写->大写))

[2. toupper(大写->小写)](#2. toupper(大写->小写))

内存操作函数:

[1. memcpy(内存拷贝)](#1. memcpy(内存拷贝))

[2. memmove(内存拷贝)](#2. memmove(内存拷贝))

[3. memcmp(内存比较)](#3. memcmp(内存比较))

[4. memset(内存设置](#4. memset(内存设置))


求字符串长度:

1.strlen**(字符串长度)**

size_t strlen ( const char * str );
str:C 字符串。
返回值:unsigned int.
1.1 字符串已经 '\0' 作为结束标志 , strlen 函数返回的是在字符串中 '\0' 前面出现的字符个数 (不包
含 '\0' )。
1.2 参数指向的字符串
必须要以 '\0'结束

1.3 注意函数的返回值为size_t ,是无符号的( 易错 )。

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	if ((int)strlen("abc") - (int)strlen("abcdef") > 0)
	{
		printf("大于\n");
	}
	else
	{
		printf("小于等于\n");
	}

	return 0;
}

长度不受限制函数:

2.strcpy(字符串拷贝)

char* strcpy(char * destination, const char * source );
**destinatiob:**指向要在其中复制内容的目标 数组的指针
**source:**要复制的 C 字符串。
2.1 源字符串必须以 '\0' 结束。
2.2 会将源字符串中的 '\0' 拷贝到目标空间。
2.3 目标空间必须足够大,以确保能存放源字符串。
2.4 目标空间必须可变。

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	//char arr1[3] = "";
	//char arr2[] = "hello bit";
	char* arr1 = "xxxxxxxxxx";
	char arr2[6] = { 'a', 'b', 'c', 'd', 'e' , '\0'};
	strcpy(arr1, arr2);
	printf("%s\n", arr1);

	return 0;
}

3.strcat(字符串追加)

char * strcat ( char * destination, const char * source );
**destination:**指向目标数组的指针,该数组应包含 C 字符串,并且足够大以包含串联的结果字符串。
source: 要追加的 C 字符串。这不应与 目标 重叠。
3.1 源字符串必须以 '\0' 结束。
3.2 目标空间必须有足够的大,能容纳下源字符串的内容。
3.3 目标空间必须可修改。

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	char arr1[20] = "hello ";
	char arr2[] = "world";
	strcat(arr1, arr2);

	printf("%s\n", arr1);
	return 0;
}

4. strcmp(字符串比较)

int strcmp ( const char * str1, const char * str2 );
str1:要比较的 C1 字符串。
str2:要比较的 C2 字符串。
4.1 标准规定:
4.1.1 第一个字符串大于第二个字符串,则返回
大于
0 的数字
4.1.2 第一个字符串等于第二个字符串,则返回
0

4.1.3 第一个字符串小于第二个字符串,则返回小于 0 的数字

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	int ret = strcmp("bbq", "bcq");
	if (ret>0)
		printf(">\n");

	printf("%d\n", ret);
	return 0;
}

长度受限制函数:

5. strncpy(字符串拷贝)

char * strncpy ( char * destination, const char * source, size_t num );
**destination:**指向要在其中复制内容的目标数组的指针。
**source:**要复制的 C 字符串。
num : 要从 复制的最大字符数;

size_t 是无符号整数类型。
5.1 拷贝 num 个字符从源字符串到目标空间
5.2 如果源字符串的长度小于 num,则拷贝完源字符串之后,在目标的后边追加0,直到num

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	char arr1[20] = "abcdef";
	char arr2[] = "xxx";
	strncpy(arr1, arr2, 5);

	return 0;
}

6. strncat(字符串追加)

char * strncat ( char * destination, const char * source, size_t num );
**destination:**指向目标数组的指针,该数组应包含一个 C 字符串,并且足够大以包含串联的结果字符串,包括其他 null 字符。
**source:**要追加的 C 字符串。
num: 要追加的最大字符数。

size_t是无符号整数类型。

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	char arr1[20] = "abcdef\0yyyyyyyy";
	char arr2[] = "xxxxxxxxx";
	strncat(arr1, arr2, 3);

	return 0;
}

7. strncmp(字符串比较)

int strncmp ( const char * str1, const char * str2, size_t num );
**str1:**要比较的 C1 字符串。
**str2:**要比较的 C2 字符串。
num:要比较的最大字符数。
size_t是无符号整数类型。
7.1 比较到出现另个字符
不一样或者一个字符串结束或者num个字符全部比较完

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	char arr1[] = "abcqwertyuiop";
	char arr2[] = "abcdef";
	printf("%d\n", strncmp(arr1, arr2, 4));

	return 0;
}

字符串查找:

8. strstr(查找字符串子串)

char * strstr ( const char *str1, const char * str2);
**str1:**要扫描的 C 字符串。
**str2:**包含要匹配的字符序列的 C 字符串。

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	char arr1[] = "abbbcdef";
	char arr2[] = "bbc";

	char* ret = strstr(arr1, arr2);
	if (ret != NULL)
		printf("%s\n", ret);
	else
		printf("找不到\n");

	return 0;
}

9. strtok(字符串分割)

char * strtok ( char * str, const char * sep );
str:要截断的 C 字符串。请注意,此字符串是通过分解为较小的字符串(标记)来修改的。或者,可以指定空指针,在这种情况下,函数将继续扫描以前成功调用函数的位置。
sep :包含分隔符字符的 C 字符串。这些可能因调用而异。
9.1sep 参数是个字符串,定义了
用作分隔符的字符集合。

9.2 第一个参数指定一个字符串,它包含了 0 个或者多个由 sep 字符串中一个或者多个分隔符分割的标记。
9.3 strtok函数找到str中的下一个标记,并将其用 \0 结尾,返回一个指向这个标记的指针。 (注:
strtok 函数会改变被操作的字符串,所以在使用 strtok 函数切分的字符串一般都是临时拷贝的内容
并且可修改。)
9.4 strtok 函数的第一个参数不为 NULL ,函数将找到 str 中第一个标记, strtok 函数将保存它在字符串中的位置。
9.5strtok 函数的第一个参数为 NULL ,函数将在同一个字符串中被保存的位置开始,查找下一个标记。
9.6 如果字符串中
不存在更多的标记,则返回
NULL 指针

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	char arr[] = "zpengwei@yeah.net@666#777";
	char copy[30];
	strcpy(copy, arr);

	char sep[] = "@.#";
	char* ret = NULL;

	for (ret = strtok(copy, sep); ret != NULL; ret=strtok(NULL, sep))
	{
		printf("%s\n", ret);
	}

	return 0;
}

错误信息报告:

10. strerror(返回错误信息)

char * strerror ( int errnum );
errnum :错误号。
库函数在执行的时候,发生了错位会将一个错误码存放errno这个变量中errno是C语言提供的一个全局的变量。
10.1 返回
错误码
,所对应的错误信息。

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	int i = 0;
	for (i = 0; i < 10; i++)
	{
		printf("%d: %s\n", i, strerror(i));//
	}
	return 0;
}

字符操作函数:

函数 如果他的参数符合下列条件就返回真
iscntrl 任何控制字符
isspace 空白字符:空格 ' ' ,换页 '\f' ,换行 '\n' ,回车 '\r' ,制表符 '\t' 或者垂直制表符 '\v'
isdigit 十进制数字 0~9
isxdigit 十六进制数字,包括所有十进制数字,小写字母 a~f ,大写字母 A~F
islower 小写字母 a~z
isupper 大写字母 A~Z
isalpha 字母 a~z 或 A~Z
isalnum 字母或者数字, a~z,A~Z,0~9
ispunct 标点符号,任何不属于数字或者字母的图形字符(可打印)
isgraph 任何图形字符
isprint 任何可打印字符,包括图形字符和空白字
[字符串函数]

字符转换:

1.towlower(小写->大写)

int tolower ( int c );

**c:**要转换、转换为 int 或 EOF 的字符。

cpp 复制代码
#include <stdio.h>
#include <ctype.h>

int main()
{
    printf("%c\n", tolower('A'));
    printf("%c\n", tolower('s'));
    
    return 0;
}

2. toupper(大写->小写)

int toupper ( int c );

**c:**要转换、转换为 int 或 EOF 的字符。

cpp 复制代码
#include <stdio.h>
#include <ctype.h>

int main()
{
	char arr[20] = { 0 };
	gets(arr);//遇到空格继续读

	char* p = arr;
	while (*p)
	{
		if (isupper(*p))// *p>='A' && *p<='Z'
		{
			*p = tolower(*p);//*p = *p+32;
		}
		p++;
	}
	printf("%s\n", arr);
	return 0;
}

内存操作函数:

1. memcpy(内存拷贝)

void * memcpy ( void * destination, const void * source, size_t num );
**destination:**指向要在其中复制内容的目标数组的指针,类型转换为 void* 类型的指针。
**source:**指向要复制的数据源的指针,类型转换为 const void* 类型的指针。
num : 要复制的字节数。
size_t 是无符号整数类型。
1.1 函数 memcpy 从 source的位置开始向后复制num个字节的数据到destination 的内存位置
1.2 这个函数在遇到 '\0' 的时候并 不会 停下来
1.3 如果 source 和 destination 有任何的 重叠复制的结果都是未定义的。

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	int arr1[] = { 1,2,3,4,5,6,7,8,9,10 };
	int arr2[20] = { 0 };
	//将arr1中的内容,拷贝到arr2中
	memcpy(arr2, arr1, 40);
         int*  int*
	int i = 0;
	for (i = 0; i < 20; i++)
	{
		printf("%d ", arr2[i]);
	}

	return 0;
}

2. mommove(内存拷贝)

void * memmove ( void * destination, const void * source, size_t num );
**destination:**指向要在其中复制内容的目标数组的指针,类型转换为 void* 类型的指针。
**source:**指向要复制的数据源的指针,类型转换为 const void* 类型的指针。
num : 要复制的字节数。

size_t 是无符号整数类型。
2.1memcpy的差别就是memmove 函数 处理的源内存块和目标内存块是可以重叠的。
2.2 如果源空间和目标空间出现重叠,就得使用 memmove 函数处理。

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	int arr1[] = { 1,2,3,4,5,6,7,8,9,10 };
	//             1 2 1 2 3 4 5 8 9 10
	memmove(arr1, arr1+2, 20);
	int i = 0;
	for (i = 0; i < 10; i++)
	{
		printf("%d ", arr1[i]);
	}
	return 0;
}

3. memcmp(内存比较)

int memcmp ( const void * ptr1, const void * ptr2, size_t num );
**ptr1:**指向内存块的指针。
**ptr2:**指向内存块的指针。
**num :**要比较的字节数。
3.1比较从 ptr1 和 ptr2 指针开始的 num个字节;
3.2返回值如下:

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	int arr1[] = { 1,2,1,4,5,6 };
	int arr2[] = { 1,2,257 };
	int ret = memcmp(arr1, arr2, 10);
	printf("%d\n", ret);
	return 0;
}

4. memset(内存设置)

void * memset ( void * ptr1, int value, size_t num );

**ptr1:**指向要填充的内存块的指针。

value: 要设置的值。该值作为 int 传递,但该函数使用此无符号 char 转换填充内存块。

num : 要设置为该值 的字节数。
size_t 是无符号整数类型。

cpp 复制代码
#include <stdio.h>
#include <string.h>

int main()
{
	char arr[] = "hello bit";
	memset(arr+1,'x',4);//以字节为单位设置的
	printf("%s\n", arr);
	return 0;
}

以上就是个人学习见解和学习的解析,欢迎各位大佬在评论区探讨!

感谢大佬们的一键三连! 感谢大佬们的一键三连! 感谢大佬们的一键三连!

相关推荐
一颗松鼠2 分钟前
JavaScript 闭包是什么?简单到看完就理解!
开发语言·前端·javascript·ecmascript
泉崎2 分钟前
11.7比赛总结
数据结构·算法
有梦想的咸鱼_4 分钟前
go实现并发安全hashtable 拉链法
开发语言·golang·哈希算法
你好helloworld4 分钟前
滑动窗口最大值
数据结构·算法·leetcode
海阔天空_20139 分钟前
Python pyautogui库:自动化操作的强大工具
运维·开发语言·python·青少年编程·自动化
天下皆白_唯我独黑16 分钟前
php 使用qrcode制作二维码图片
开发语言·php
QAQ小菜鸟19 分钟前
一、初识C语言(1)
c语言
学术头条20 分钟前
AI 的「phone use」竟是这样练成的,清华、智谱团队发布 AutoGLM 技术报告
人工智能·科技·深度学习·语言模型
夜雨翦春韭20 分钟前
Java中的动态代理
java·开发语言·aop·动态代理
准橙考典21 分钟前
怎么能更好的通过驾考呢?
人工智能·笔记·自动驾驶·汽车·学习方法