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