位置:首页 > 高级语言 > C语言标准库 > strstr() - C语言库函数

strstr() - C语言库函数

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

声明

以下是声明strstr() 函数。

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

参数

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

  • needle -- 这是小haystack中字符串内被搜索的字符串。

返回值

这个函数返回一个指针指向第一次出现在草垛整个针,或一个空指针指定的字符序列,如果序列是不存在haystack中。

例子

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

#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