C语言基础——字符串操作

简介: C语言基础——字符串操作

文章目录

字符串操作

字符串操作函数

strlen 函数

strcat 函数

strncat 函数

strcmp 函数

strncmp 函数

strcpy 函数

strncpy 函数

memset 函数

strstr 函数

sprintf 函数

sscanf 函数


字符串操作

在C程序中使用字符串,不可以使用操作符来操作字符串,应该使用一组标准函数,C标准库中有对于使用字符串操作的一组函数(需要包含头文件string.h)


字符串操作函数

strlen 函数

size_t strlen(const char *str)

参数


  • str – 这是字符串的长度要计算的。
  • 返回值
  • 这个函数返回字符串的长度。
#include <stdio.h>
#include <string.h>
int main ()
{
   char str[50];
   int len;
   strcpy(str, "This is yiibai.com");
   len = strlen(str);
   printf("Length of |%s| is |%d|
", str, len);
   return(0);
}


  • 输出
Length of |This is yiibai.com| is |26|


strcat 函数

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

参数


  • dest – 这是目标数组,它应该包含一个C字符串,大到足以包含级联的结果字符串的指针。
  • src – 这是要追加的字符串。这不应该重叠的目的地。
  • 返回值
  • 这个函数返回一个指针生成的字符串dest。
#include <stdio.h>
#include <string.h>
int main ()
{
   char src[50], dest[50];
   strcpy(src,  "This is source");
   strcpy(dest, "This is destination");
   strcat(dest, src);
   printf("Final destination string : |%s|", dest);
   return(0);
}


  • 输出
Final destination string : |This is destinationThis is source|


strncat 函数

char *strncat(char *dest, const char *src, size_t n)


参数


  • dest – 这是,它应该包含一个C字符串,大到足以包含级联产生附加的空字符的字符串,其中包括目标数组的指针。
  • src – 这是要追加的字符串。
  • n – 这是要追加的字符的最大数目。
  • 返回值
  • 这个函数返回一个指针生成的字符串dest。
#include <stdio.h>
#include <string.h>
int main ()
{
   char src[50], dest[50];
   strcpy(src,  "This is source");
   strcpy(dest, "This is destination");
   strncat(dest, src, 15);
   printf("Final destination string : |%s|", dest);
   return(0);
}


  • 输出
Final destination string : |This is destinationThis is source|


strcmp 函数

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

参数


  • str1 – 这是第一个要比较的字符串。
  • str2 – 这是第二个的字符串进行比较。
  • 返回值
  • 这个函数的返回值如下:
  • 如果返回值<0,则表明str1小于str2
  • 如果返回值,如果> 0,则表明str2 小于 str1
  • 如果返回值= 0,则表明str1 等于str2
#include <stdio.h>
#include <string.h>
int main ()
{
   char str1[15];
   char str2[15];
   int ret;
   strcpy(str1, "abcdef");
   strcpy(str2, "ABCDEF");
   ret = strcmp(str1, str2);
   if(ret > 0)
   {
      printf("str1 is less than str2");
   }
   else if(ret < 0) 
   {
      printf("str2 is less than str1");
   }
   else 
   {
      printf("str1 is equal to str2");
   }
   return(0);
}
  • 输出
str1 is less than str2


strncmp 函数

int strncmp(const char *str1, const char *str2, size_t n)

参数


  • str1 – 这是第一个要比较的字符串。
  • str2 – 这是第二个进行比较的字符串。
  • n – 最大字符数进行比较。
  • 返回值
  • 如果返回值<0,则表明str1小于str2
  • 如果返回值,如果> 0,则表明str2 小于 str1
  • 如果返回值= 0,则表明str1 等于str2
#include <stdio.h>
#include <string.h>
int main ()
{
   char str1[15];
   char str2[15];
   int ret;
   strcpy(str1, "abcdef");
   strcpy(str2, "ABCDEF");
   ret = strncmp(str1, str2, 4);
   if(ret > 0)
   {
      printf("str1 is less than str2");
   }
   else if(ret < 0) 
   {
      printf("str2 is less than str1");
   }
   else 
   {
      printf("str1 is equal to str2");
   }
   return(0);
}


  • 输出
str1 is less than str2


strcpy 函数

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

参数


  • dest – 这就是指针的内容将被复制到目标数组。
  • src – 这是要复制的字符串。
  • 返回值
  • 一个指向目标字符串dest
#include <stdio.h>
#include <string.h>
int main()
{
   char src[40];
   char dest[100];
   memset(dest, '', sizeof(dest));
   strcpy(src, "This is yiibai.com");
   strcpy(dest, src);
   printf("Final copied string : %s
", dest);
   return(0);
}


  • 输出
Final copied string : This is yiibai.com


strncpy 函数

char *strncpy(char *dest, const char *src, size_t n)

参数


  • dest – 指向用于存储复制内容的目标数组。
  • src – 要复制的字符串。
  • n – 要从源中复制的字符数。
  • 返回值
  • 该函数返回最终复制的字符串。
#include <stdio.h>
#include <string.h>
int main()
{
   char src[40];
   char dest[12];
   memset(dest, '\0', sizeof(dest));
   strcpy(src, "This is runoob.com");
   strncpy(dest, src, 10);
   printf("最终的目标字符串: %s\n", dest);
   return(0);
}


  • 输出
最终的目标字符串: This is ru


memset 函数

void *memset(void *str, int c, size_t n)

参数


  • str – 这是来填充的内存块的指针。
  • c – 这是要设置的值。作为一个int值传递,但使用这个值的无符号字符型转换函数填充的内存块。
  • n – 这是要设置的值的字节数。
  • 返回值
  • 这个函数返回一个指针,指向的内存区域str。
#include <stdio.h>
#include <string.h>
int main ()
{
   char str[50];
   strcpy(str,"This is string.h library function");
   puts(str);
   memset(str,'$',7);
   puts(str);
   return(0);
}


  • 输出
This is string.h library function
$$$$$$$ string.h library function


strstr 函数

char *strstr(const char *haystack, const char *needle)

参数


  • haystack – 这是主要的C字符串进行扫描。
  • needle – 这是小haystack中字符串内被搜索的字符串。
  • 返回值
  • 这个函数返回一个指针指向第一次出现在草垛整个针,或一个空指针指定的字符序列,如果序列是不存在haystack中。
#include <stdio.h>
#include <string.h>
int main()
{
const char haystack[20] = “TutorialsYiibai”;
const char needle[10] = “Yiibai”;
char *ret;
ret = strstr(haystack, needle);
printf("The substring is: %s
", ret);
return(0);
}
输出
The substring is: Yiibai
1
sprintf 函数
具体参考:https://www.yiibai.com/c_standard_library/c_function_sprintf.html
示例:
#include <stdio.h>
#include <math.h>
int main()
{
   char str[80];
   sprintf(str, "Value of Pi = %f", M_PI);
   puts(str);
   return(0);
}


  • 输出
Value of Pi = 3.141593


sscanf 函数

具体参考:https://www.yiibai.com/c_standard_library/c_function_sscanf.html


  • 示例:
#include <stdio.h>
#include <stdlib.h>
int main()
{
   int day, year;
   char weekday[20], month[20], dtm[100];
   strcpy( dtm, "Saturday March 25 1989" );
   sscanf( dtm, "%s %s %d  %d", weekday, month, &day, &year );
   printf("%s %d, %d = %s
", month, day, year, weekday );
   return(0);
}



  • 输出:
March 25, 1989 = Saturday


相关文章
|
5月前
|
NoSQL 程序员 Redis
C语言字符串的设计缺陷
C语言字符串的设计缺陷
51 1
|
1月前
|
C语言 C++
【C语言】解决不同场景字符串问题:巧妙运用字符串函数
【C语言】解决不同场景字符串问题:巧妙运用字符串函数
|
2月前
|
存储 C语言
【C语言基础考研向】10 字符数组初始化及传递和scanf 读取字符串
本文介绍了C语言中字符数组的初始化方法及其在函数间传递的注意事项。字符数组初始化有两种方式:逐个字符赋值或整体初始化字符串。实际工作中常用后者,如`char c[10]=&quot;hello&quot;`。示例代码展示了如何初始化及传递字符数组,并解释了为何未正确添加结束符`\0`会导致乱码。此外,还讨论了`scanf`函数读取字符串时忽略空格和回车的特点。
|
2月前
|
存储 Serverless C语言
【C语言基础考研向】11 gets函数与puts函数及str系列字符串操作函数
本文介绍了C语言中的`gets`和`puts`函数,`gets`用于从标准输入读取字符串直至换行符,并自动添加字符串结束标志`\0`。`puts`则用于向标准输出打印字符串并自动换行。此外,文章还详细讲解了`str`系列字符串操作函数,包括统计字符串长度的`strlen`、复制字符串的`strcpy`、比较字符串的`strcmp`以及拼接字符串的`strcat`。通过示例代码展示了这些函数的具体应用及注意事项。
112 7
|
2月前
|
存储 人工智能 C语言
C语言程序设计核心详解 第八章 指针超详细讲解_指针变量_二维数组指针_指向字符串指针
本文详细讲解了C语言中的指针,包括指针变量的定义与引用、指向数组及字符串的指针变量等。首先介绍了指针变量的基本概念和定义格式,随后通过多个示例展示了如何使用指针变量来操作普通变量、数组和字符串。文章还深入探讨了指向函数的指针变量以及指针数组的概念,并解释了空指针的意义和使用场景。通过丰富的代码示例和图形化展示,帮助读者更好地理解和掌握C语言中的指针知识。
|
2月前
|
C语言
C语言 字符串操作函数
本文档详细介绍了多个常用的字符串操作函数,包括 `strlen`、`strcpy`、`strncpy`、`strcat`、`strncat`、`strcmp`、`strncpy`、`sprintf`、`itoa`、`strchr`、`strspn`、`strcspn`、`strstr` 和 `strtok`。每个函数均提供了语法说明、参数解释、返回值描述及示例代码。此外,还给出了部分函数的自实现版本,帮助读者深入理解其工作原理。通过这些函数,可以轻松地进行字符串长度计算、复制、连接、比较等操作。
|
3月前
|
C语言
【C语言】字符串及其函数速览
【C语言】字符串及其函数速览
30 4
|
3月前
|
C语言
【C语言篇】字符和字符串以及内存函数详细介绍与模拟实现(下篇)
perror函数打印完参数部分的字符串后,再打印⼀个冒号和⼀个空格,再打印错误信息。
61 0
|
3月前
|
存储 安全 编译器
【C语言篇】字符和字符串以及内存函数的详细介绍与模拟实现(上篇)
当然可以用scanf和printf输入输出,这里在之前【C语言篇】scanf和printf万字超详细介绍(基本加拓展用法)已经讲过了,这里就不再赘述,主要介绍只针对字符的函数.
54 0
|
5月前
|
C语言
C语言学习笔记之初识字符串
C语言学习笔记之初识字符串
42 5