当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 strstr()用法及代码示例



描述

C库函数char *strstr(const char *haystack, const char *needle)函数查找第一次出现的子串needle在字符串中haystack.不比较终止的 '\0' 字符。

声明

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

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

参数

  • haystack- 这是要扫描的主要 C 字符串。

  • needle- 这是要搜索的小字符串 with-in haystack 字符串。

返回值

此函数返回一个指针,指向在 haystack 中第一次出现在needle 中指定的整个字符序列中的任何一个,如果该序列不存在于 haystack 中,则返回一个空指针。

示例

下面的例子展示了 strstr() 函数的用法。

#include <stdio.h>
#include <string.h>


int main () {
   const char haystack[20] = "TutorialsPoint";
   const char needle[10] = "Point";
   char *ret;

   ret = strstr(haystack, needle);

   printf("The substring is:%s\n", ret);
   
   return(0);
}

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

The substring is:Point

相关用法


注:本文由纯净天空筛选整理自 C library function - strstr()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。