描述
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語言 strstr()用法及代碼示例
- C語言 strspn()用法及代碼示例
- C語言 strcspn()用法及代碼示例
- C語言 strtol()用法及代碼示例
- C語言 strrchr()用法及代碼示例
- C語言 strftime()用法及代碼示例
- C語言 strtok()用法及代碼示例
- C語言 strncat()用法及代碼示例
- C語言 strupr()用法及代碼示例
- C語言 strlen()用法及代碼示例
- C語言 strtod()用法及代碼示例
- C語言 strcat()用法及代碼示例
- C語言 strxfrm()用法及代碼示例
- C語言 strchr()用法及代碼示例
- C語言 strrev()用法及代碼示例
- C語言 strcmpi()用法及代碼示例
- C語言 strtok()、strtok_r()用法及代碼示例
- C語言 strerror()用法及代碼示例
- C語言 strpbrk()用法及代碼示例
- C語言 strnset()用法及代碼示例
注:本文由純淨天空篩選整理自 C library function - strstr()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。