抽丝剥茧C语言(高阶)字符函数和字符串函数+练习(上)

简介: 抽丝剥茧C语言(高阶)字符函数和字符串函数+练习

导语

C语言中对字符和字符串的处理很是频繁,但是C语言本身是没有字符串类型的,字符串通常放在常量字符串中或者字符数组中。

字符串常量适用于那些对它不做修改的字符串函数。

注意:英文部分是网站上的资料

链接: cplusplus

1. 函数介绍

1.1 strlen

这个是老朋友了,计算字符串长度用的。

size_t strlen ( const char * str );//返回类型,函数参数等

字符串已经 ‘\0’ 作为结束标志,strlen函数返回的是在字符串中 ‘\0’ 前面出现的字符个数(不包

含 ‘\0’ )。

参数指向的字符串必须要以 ‘\0’ 结束。

注意函数的返回值为size_t,是无符号的。

#include <string.h>
#include <stdio.h>
int main()
{
  const char* str1 = "abcdef";
  const char* str2 = "bbb";
  if (strlen(str2) - strlen(str1) > 0)
  {
    printf("str2>str1\n");
  }
  else
  {
    printf("srt1>str2\n");
  }
  return 0;
}

运行结果是:

因为这是无符号数据的运算,所以不会有负数。

1.2 strcpy

strcpy函数是拷贝用的,将一个字符串拷贝到另一个空间里。

char* strcpy(char * destination, const char * source );

Copies the C string pointed by source into the array pointed by destination, including the

terminating null character (and stopping at that point).

源字符串必须以 ‘\0’ 结束。

会将源字符串中的 ‘\0’ 拷贝到目标空间。

目标空间必须足够大,以确保能存放源字符串。

目标空间必须可变。

#include <stdio.h>
#include <string.h>
int main()
{
  char arr1[20] = "qwertyuiop";
  char arr2[20] = { 0 };
  strcpy(arr2, arr1);
  printf("%s", arr2);
  return 0;
}

1.3 strcat

strcat是追加字符串,

char * strcat ( char * destination, const char * source );

Appends a copy of the source string to the destination string. The terminating null character in destination is overwritten by the first character of source, and a null-character is included at the end of the new string formed by the concatenation of both in destination.

源字符串必须以 ‘\0’ 结束。

目标空间必须有足够的大,能容纳下源字符串的内容。

目标空间必须可修改。

#include <stdio.h>
#include <string.h>
int main()
{
  char arr1[20] = "qwert";
  char arr2[20] = { 0 };
  strcat(arr2, arr1);
  printf("%s", arr2);
  return 0;
}

字符串自己给自己追加,如何?

答案是死循环,因为源字符串的\0被追加的第一个字符给覆盖了,导致追加的字符长度就没有了限制,最后导致越界,程序崩溃(有些编译器实现的strcat并不一样)。

1.4 strcmp

这个是判断两个字符串谁大谁小,一对一对字符比较,只要有一对字符不相同就会结束比较。

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

This function starts comparing the first character of each string. If they are equal to each

other, it continues with the following pairs until the characters differ or until a terminating

null-character is reached.

第一个字符串大于第二个字符串,则返回大于0的数字。

第一个字符串等于第二个字符串,则返回0。

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

#include <stdio.h>
#include <string.h>
int main()
{
  char arr1[20] = "qwerty";
  char arr2[20] = "asdfgh";
  int sum = strcmp(arr1, arr2);
  printf("%d", sum);
  return 0;
}

这里比的是字符的大小,也就是ASCII值,首先比较的是第一对字符,q和a,假如说第一对相同,那就比下一对,哪个字符串长,就以那个字符串为标准,不会超过长的那个字符串的末尾。

比如说:

arr1:aaaaaa\0

arr2:aaaaa\0

最后的比对就是,arr1最后的a和arr2的\0做比较。

1.5 strncpy

这个也是字符串拷贝,只不过可以选择拷贝多少个字符。

char * strncat ( char * destination, const char * source, size_t num );

Copies the first num characters of source to destination. If the end of the source C string

(which is signaled by a null-character) is found before num characters have been copied,destination is padded with zeros until a total of num characters have been written to it.

拷贝num个字符从源字符串到目标空间。

如果源字符串的长度小于num,则拷贝完源字符串之后,在目标的后边追加\0,直到num个。

#include <stdio.h>
#include <string.h>
int main()
{
  char arr1[20] = "qwerty";
  char arr2[20] = "asdfgh";
  strncpy(arr1, arr2, 4);
  printf("%s", arr1);
  return 0;
}

1.6 strncat

这个是可选择追加多少个字符。

char * strncat ( char * destination, const char * source, size_t num );

Appends the first num characters of source to destination, plus a terminating null-character.

If the length of the C string in source is less than num, only the content up to the terminating null-character is copied.

#include <stdio.h>
#include <string.h>
int main()
{
  char str1[20];
  char str2[20];
  strcpy(str1, "To be ");
  strcpy(str2, "or not to be");
  strncat(str1, str2, 6);
  puts(str1);
  return 0;
}

1.7 strncmp

这个是选择比较多少个字符。

int strncmp ( const char * str1, const char * str2, size_t num );

比较到出现另个字符不一样或者一个字符串结束或者num个字符全部比较完。

#include <stdio.h>
#include <string.h>
int main()
{
  char str[][5] = { "R2D2" , "C3PO" , "R2A6" };
  int n;
  puts("Looking for R2 astromech droids...");
  for (n = 0; n < 3; n++)
    if (strncmp(str[n], "R2xx", 2) == 0)
    {
      printf("found %s\n", str[n]);
    }
  return 0;
}

1.8 strstr

char * strstr ( const char *str1, const char * str2);

Returns a pointer to the first occurrence of str2 in str1, or a null pointer if str2 is not part of str1.

这个函数是判断一个字符串是否为另一个字符串的子串,如果是,函数返回str1中刚出现str2字符串的首地址。

#include <stdio.h>
#include <string.h>
int main()
{
  char str[] = "This is a simple string";
  char* pch;
  pch = strstr(str, "simple");
  strncpy(pch, "sample", 6);
  printf("%s", str);
  return 0;
}

1.9 strtok

char * strtok ( char * str, const char * sep );

sep参数是个字符串,定义了用作分隔符的字符集合

第一个参数指定一个字符串,它包含了0个或者多个由sep字符串中一个或者多个分隔符分割的标记。

strtok函数找到str中的下一个标记,并将其用 \0 结尾,返回一个指向这个标记的指针。(注:strtok函数会改变被操作的字符串,所以在使用strtok函数切分的字符串一般都是临时拷贝的内容并且可修改。)

strtok函数的第一个参数不为 NULL ,函数将找到str中第一个标记,strtok函数将保存它在字符串中的位置。

strtok函数的第一个参数为 NULL ,函数将在同一个字符串中被保存的位置开始,查找下一个标记。

如果字符串中不存在更多的标记,则返回 NULL 指针。

#include <stdio.h>
#include <string.h>
int main()
{
  char str[] = "- This, a sample string.";
  char* pch;
  printf("Splitting string \"%s\" into tokens:\n", str);
  pch = strtok(str, " ,.-");//这是第一次遇到分隔符
  while (pch != NULL)
  {
    printf("%s\n", pch);
    pch = strtok(NULL, " ,.-");
  }
  return 0;
}

#include <string.h>
#include <stdio.h>
int main()
{
  char* p = "kukulinbaiye@qwert.asdf";
  const char* sep = ".@";
  char arr[30];
  char* str = NULL;
  strcpy(arr, p);//将数据拷贝一份,处理arr数组的内容
  for (str = strtok(arr, sep); str != NULL; str = strtok(NULL, sep))
  {
    printf("%s\n", str);
  }
}

char * strerror ( int errnum );

返回错误码,所对应的错误信息。

#include <stdio.h>
#include <string.h>
#include <errno.h>//必须包含的头文件
int main()
{
  FILE* pFile;
  pFile = fopen("unexist.ent", "r");//这里检测的是和你编译器创建的源文件同目录中有没有unexist.net文件
  if (pFile == NULL)
    printf("Error opening file unexist.ent: %s\n", strerror(errno));
  //errno: Last error number
  return 0;
}

因为我没有创建unexist.net文件,所以结果是这样的:

字符分类函数:

函数 如果他的参数符合下列条件就返回真
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 任何可打印字符,包括图形字符和空白字符

字符转换:

int tolower ( int c );//大写字母转为小写字母
int toupper ( int c );//小写字母转为大写字母
#include <stdio.h>
#include <ctype.h>
int main()
{
  int i = 0;
  char str[] = "Test String.\n";
  char c;
  while (str[i])
  {
    c = str[i];
    if (isupper(c))
      c = tolower(c);
    putchar(c);
    i++;
  }
  return 0;
}

相关文章
|
27天前
|
存储 C语言 开发者
【C语言】字符串操作函数详解
这些字符串操作函数在C语言中提供了强大的功能,帮助开发者有效地处理字符串数据。通过对每个函数的详细讲解、示例代码和表格说明,可以更好地理解如何使用这些函数进行各种字符串操作。如果在实际编程中遇到特定的字符串处理需求,可以参考这些函数和示例,灵活运用。
56 10
|
27天前
|
存储 程序员 C语言
【C语言】文件操作函数详解
C语言提供了一组标准库函数来处理文件操作,这些函数定义在 `<stdio.h>` 头文件中。文件操作包括文件的打开、读写、关闭以及文件属性的查询等。以下是常用文件操作函数的详细讲解,包括函数原型、参数说明、返回值说明、示例代码和表格汇总。
44 9
|
27天前
|
存储 Unix Serverless
【C语言】常用函数汇总表
本文总结了C语言中常用的函数,涵盖输入/输出、字符串操作、内存管理、数学运算、时间处理、文件操作及布尔类型等多个方面。每类函数均以表格形式列出其功能和使用示例,便于快速查阅和学习。通过综合示例代码,展示了这些函数的实际应用,帮助读者更好地理解和掌握C语言的基本功能和标准库函数的使用方法。感谢阅读,希望对你有所帮助!
37 8
|
27天前
|
C语言 开发者
【C语言】数学函数详解
在C语言中,数学函数是由标准库 `math.h` 提供的。使用这些函数时,需要包含 `#include <math.h>` 头文件。以下是一些常用的数学函数的详细讲解,包括函数原型、参数说明、返回值说明以及示例代码和表格汇总。
45 6
|
27天前
|
存储 C语言 开发者
【C语言】格式化输出占位符及其标志字符详解(基于ISO/IEC 9899:2024)
在C语言中,格式化输出通过 `printf` 函数等格式化输出函数来实现。格式说明符(占位符)定义了数据的输出方式,标准ISO/IEC 9899:2024(C23)对这些格式说明符进行了详细规定。本文将详细讲解格式说明符的组成部分,包括标志字符、宽度、精度、长度修饰符和类型字符,并适当增加表格说明。
43 6
|
27天前
|
存储 C语言
【C语言】输入/输出函数详解
在C语言中,输入/输出操作是通过标准库函数来实现的。这些函数分为两类:标准输入输出函数和文件输入输出函数。
190 6
|
27天前
|
存储 缓存 算法
【C语言】内存管理函数详细讲解
在C语言编程中,内存管理是至关重要的。动态内存分配函数允许程序在运行时请求和释放内存,这对于处理不确定大小的数据结构至关重要。以下是C语言内存管理函数的详细讲解,包括每个函数的功能、标准格式、示例代码、代码解释及其输出。
59 6
|
27天前
|
C语言 开发者
【C语言】断言函数 -《深入解析C语言调试利器 !》
断言(assert)是一种调试工具,用于在程序运行时检查某些条件是否成立。如果条件不成立,断言会触发错误,并通常会终止程序的执行。断言有助于在开发和测试阶段捕捉逻辑错误。
37 5
|
2月前
|
C语言 C++
C语言 之 内存函数
C语言 之 内存函数
42 3
|
1月前
|
存储 人工智能 算法
数据结构实验之C 语言的函数数组指针结构体知识
本实验旨在复习C语言中的函数、数组、指针、结构体与共用体等核心概念,并通过具体编程任务加深理解。任务包括输出100以内所有素数、逆序排列一维数组、查找二维数组中的鞍点、利用指针输出二维数组元素,以及使用结构体和共用体处理教师与学生信息。每个任务不仅强化了基本语法的应用,还涉及到了算法逻辑的设计与优化。实验结果显示,学生能够有效掌握并运用这些知识完成指定任务。
60 4