strstr() - C語言庫函式


C庫函式 char *strstr(const char *haystack, const char *needle) 函式找到第一次出現的字串中的haystack子串針。終止''字元不比較。

宣告

以下是宣告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