25 字符串之常用字符串函数

在上一篇中,我们对字符串的定义与操作有了初步的了解。在这一篇中,我们将深入探讨 C 语言中常用的字符串函数。理解这些函数将有助于我们更方便地处理字符串,为后续学习指针的基本概念打下基础。

常用字符串函数概述

C 语言标准库提供了一系列处理字符串的函数,它们主要定义在 string.h 头文件中。以下是一些常用的字符串函数:

  • strlen:计算字符串长度
  • strcpy:字符串复制
  • strcat:字符串连接
  • strcmp:字符串比较
  • strchr:查找字符

1. strlen 函数

strlen 函数用于计算字符串的长度(不包括终止字符 '\0')。其基本语法如下:

1
size_t strlen(const char *str);

示例:

1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <string.h>

int main() {
const char *str = "Hello, World!";
size_t length = strlen(str);
printf("字符串长度: %zu\n", length);
return 0;
}

输出:

1
字符串长度: 13

2. strcpy 函数

strcpy 函数用于将一个字符串复制到另一个字符串中。其基本语法如下:

1
char *strcpy(char *dest, const char *src);

示例:

1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <string.h>

int main() {
char dest[50];
const char *src = "Hello, World!";
strcpy(dest, src);
printf("复制后的字符串: %s\n", dest);
return 0;
}

输出:

1
复制后的字符串: Hello, World!

3. strcat 函数

strcat 函数用于将一个字符串添加到另一个字符串的末尾。其基本语法如下:

1
char *strcat(char *dest, const char *src);

示例:

1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <string.h>

int main() {
char dest[50] = "Hello";
const char *src = ", World!";
strcat(dest, src);
printf("连接后的字符串: %s\n", dest);
return 0;
}

输出:

1
连接后的字符串: Hello, World!

4. strcmp 函数

strcmp 函数用于比较两个字符串。返回的值用于表示两个字符串的关系:

  • 返回 0:相等
  • 返回正值:第一个字符串大于第二个字符串
  • 返回负值:第一个字符串小于第二个字符串

基本语法如下:

1
int strcmp(const char *str1, const char *str2);

示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
#include <string.h>

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

if (result == 0) {
printf("两个字符串相等\n");
} else if (result < 0) {
printf("'%s' 小于 '%s'\n", str1, str2);
} else {
printf("'%s' 大于 '%s'\n", str1, str2);
}

return 0;
}

输出:

1
'Hello' 小于 'World'

5. strchr 函数

strchr 函数用于查找字符串中首次出现指定字符的位置。其基本语法如下:

1
char *strchr(const char *str, int c);

示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <string.h>

int main() {
const char *str = "Hello, World!";
char *ptr = strchr(str, 'W');

if (ptr != NULL) {
printf("字符 'W' 首次出现的位置: %ld\n", ptr - str);
} else {
printf("字符 'W' 未找到\n");
}

return 0;
}

输出:

1
字符 'W' 首次出现的位置: 7

小结

在本篇中,我们探讨了 C 语言中几个常用的字符串函数。通过这些函数,我们可以高效地处理字符串数据。掌握这些基础知识后,接下来我们将进入指针的基本概念,进一步扩展对 C 语言的理解和应用。

如果您对字符串的其他操作或字符串相关的高级主题有兴趣,可以在后续学习中深入探究。

25 字符串之常用字符串函数

https://zglg.work/cplusplus-zero/25/

作者

IT教程网(郭震)

发布于

2024-08-10

更新于

2024-08-10

许可协议

分享转发

交流

更多教程加公众号

更多教程加公众号

加入星球获取PDF

加入星球获取PDF

打卡评论