C语言常用字符串处理函数

头文件:#include <string.h>

strlen

size_t strlen( char *str );
功能:函数返回一个整数值,表示给定字符串的长度(不包括结束符'\0')

strcat

char *strcat( char *str1, const char *str2 );
功能:函数将字符串str2 连接到str1的末端,并返回指针str1.

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

int main() {
    char str1[50] = "Hello";
    char str2[] = " World!";
    strcat(str1, str2);
    printf("%s\n", str1); // 输出: Hello World!
    return 0;
}

strcpy

char *strcpy( char *destc, const char *src );
功能:函数从源字符串src的第一个字符开始,逐个字符地复制到目标字符串dest中,直到遇到源字符串的终止符'\0'。复制完成后,目标字符串dest也以'\0'结尾。

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

int main() {
    char src[] = "Hello, World!";
    char dest[50]; // 确保目标数组足够大以容纳源字符串
    strcpy(dest, src);
    printf("Source: %s\n", src); //输出 Hello, World!
    printf("Destination: %s\n", dest);// Hello, World!
    return 0;
}

现象

strncpy

char *strncpy( char *to, const char *from, size_t count );
功能:将字符串from 中至多count个字符复制到字符串to中。如果字符串from 的长度小于count,其余部分用'\0'填补。返回处理完成的字符串。

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

int main() {
    char src[] = "Hello, World!";
    char dest[50]; // 确保目标数组足够大以容纳源字符串
    strncpy(dest, src,5);
    printf("Source: %s\n", src); //输出 Hello, World!
    printf("Destination: %s\n", dest);
    return 0;
}

现象

strcmp

常用于比较两个字符串是否相等。
int strcmp( const char *str1, const char *str2 );
功能:比较字符串str1 and str2, 返回值如下:
返回值 解释
<0 str1 is less than str2
=0 str1 is equal to str2
>0 str1 is greater than str2

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

int main() {
    char str1[] = "Hello";
    char str2[] = "World";
    int result = strcmp(str1, str2);

    if (result == 0) {
        printf("字符串相等。\n");
    } else if (result < 0) {
        printf("str1 小于 str2。\n");
    } else {
        printf("str1 大于 str2。\n");
    }

    return 0;
}

现象:

比较了两个字符串"Hello"和"World",由于"H"的ASCII值小于"W"的ASCII值,因此strcmp函数返回负数,程序输出"str1 小于 str2"。

strncmp

int strncmp( const char *str1, const char *str2, size_t count );
功能:比较字符串str1 和 str2中至多count个字符。

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

int main() {
    char str1[] = "HelloABC";
    char str2[] = "HelloDEF";
    int result = strncmp(str1, str2,5);

    if (result == 0) {
        printf("前5个字符相等\n");
    } else if (result < 0 || result >0) {
		printf("前5个字符不相等\n");
	}
    return 0;
}

现象:

strstr

char *strstr( const char *str1, const char *str2 );
功能:函数返回一个指针,它指向字符串str2 首次出现于字符串str1中的位置,如果没有找到,返回NULL。

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

int main() {
    const char *str1 = "Hello, World!";
    const char *str2 = "Wo";
    char *result = strstr(str1, str2);

    if (result) {
        printf("Found : %s\n", result);
    } else {
        printf("Not found.\n");
    }

    return 0;
}

现象:

strcspn

常用于定位删除字符串 '\n' 换行符
size_t strcspn( const char *str1, const char *str2 );
功能:函数返回str1 开头连续n个字符都不含字符串str2内字符的字符数。

实例一:

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

int main() {
    char str1[] = "Hello";
    char str2[] = "!@#$";
    size_t result = strcspn(str1, str2);

    printf("strcspn_result: %zu\n", result);

    return 0;
}

现象:

strcspn函数计算字符串"Hello"中从起始位置开始连续不包含字符串"!@#"中字符的跨度。由于"Hello"这5个字符都不属于"!@#"中的字符,因此result返回5

实例二:

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

int main() {
    char str1[] = "Hello\n";
    size_t result = strcspn(str1, "\n");
	str1[result] = '\0';
    printf("strcspn_result: %zu\n", result);
	printf("str1:%s",str1);

    return 0;
}

现象:

atoi

头文件:#include <stdlib.h>
int atoi( const char *str );
功能:将字符串str转换成一个整数并返回结果。参数str 以数字开头,当函数从str 中读到非数字字符则结束转换并将结果返回。

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

int main() {
	int n1,n2;
    const char *str1 = "123abc";
    const char *str2 = "abc123";
    n1 = atoi(str1);
	n2 = atoi(str2);

	printf("n1:%d\r\n",n1);
	printf("n2:%d\r\n",n2);

    return 0;
}

现象:

memset

void *memset( void *buffer, int ch, size_t count );
功能: 函数拷贝ch 到buffer 从头开始的count 个字符里, 并返回buffer指针。 memset() 可以应用在将一段内存初始化为某个值。

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

#define CLEAR(x)  memset((x),0,sizeof(x))

int main() {
    char str1[] = "Hello,world!";
	printf("str1:%s\r\n",str1);
	
	CLEAR(str1);
	printf("str1:%s\r\n",str1);

    return 0;
}

现象:

相关推荐
Icomi_36 分钟前
【外文原版书阅读】《机器学习前置知识》1.线性代数的重要性,初识向量以及向量加法
c语言·c++·人工智能·深度学习·神经网络·机器学习·计算机视觉
apocelipes38 分钟前
Linux glibc自带哈希表的用例及性能测试
c语言·c++·哈希表·linux编程
Tanecious.1 小时前
C语言--分支循环实践:猜数字游戏
android·c语言·游戏
Ronin-Lotus1 小时前
上位机知识篇---CMake
c语言·c++·笔记·学习·跨平台·编译·cmake
软工在逃男大学生3 小时前
转换算术表达式
c语言·数据结构·c++·算法
落羽的落羽3 小时前
【落羽的落羽 数据结构篇】算法复杂度
c语言·数据结构·算法
Oracle_66612 小时前
基于C语言的数组从入门到精通
c语言
花生_TL0000713 小时前
【C语言算法刷题】第2题 图论 dijkastra
c语言·算法·图论
crossoverpptx14 小时前
const的用法
c语言·c++
WTT001114 小时前
C语言中危险函数
大数据·c语言·开发语言·网络·算法·渗透测试·we安全