C 语言库函数 - strstr()
C 语言标准库 <string.h> 函数 char strstr(const char haystack, const char *needle) 在字符串 haystack 中查找第一次出现字符串 needle 的位置,不包含终止符 \0
头文件
#include <string.h>
函数原型
下面是 strstr() 函数的原型
char *strstr(const char *haystack, const char *needle)
参数
- haystack : 要被检索的 C 字符串
- needle : 在 haystack 字符串内要搜索的小字符串
返回值
该函数返回在 haystack 中第一次出现 needle 字符串的位置,如果未找到则返回 null
范例
下面的范例演示了 strstr() 函数的用法
/** * file: main.c * author: 简单教程(www.twle.cn) * * Copyright © 2015-2065 www.twle.cn. All rights reserved. */ #include <stdio.h> #include <string.h> int main() { const char haystack[20] = "www.twle.cn"; const char needle[10] = "twle"; char *ret; ret = strstr(haystack, needle); printf("子字符串是: %s\n", ret); return(0); }
编译运行范例,输出结果如下
$ gcc main.c && ./a.out
子字符串是: twle.cn