您当前的位置:首页 > IT编程 > C语言
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch |

自学教程:C 库函数 - strstr()

51自学网 2023-01-07 20:28:00
  C语言
这篇教程C 库函数 - strstr()写得很实用,希望能帮到您。

描述

C 库函数 char *strstr(const char *haystack, const char *needle) 在字符串 haystack 中查找第一次出现字符串 needle 的位置,不包含终止符 '/0'。

声明

下面是 strstr() 函数的声明。

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

参数

  • haystack -- 要被检索的 C 字符串。
  • needle -- 在 haystack 字符串内要搜索的小字符串。

返回值

该函数返回在 haystack 中第一次出现 needle 字符串的位置,如果未找到则返回 null。

实例

下面的实例演示了 strstr() 函数的用法。

#include <stdio.h>#include <string.h>int main(){   const char haystack[20] = "CODERCTO";   const char needle[10] = "NOOB";   char *ret;   ret = strstr(haystack, needle);   printf("子字符串是: %s/n", ret);      return(0);}

让我们编译并运行上面的程序,这将产生以下结果:

子字符串是: NOOB

C 库函数 - strspn()
C 库函数 - strtok()
51自学网,即我要自学网,自学EXCEL、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。
京ICP备13026421号-1