码迷,mamicode.com
首页 > 其他好文 > 详细

C 库函数 - strstr()

时间:2019-07-20 23:35:07      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:返回   int   har   spl   turn   tac   display   printf   one   

 

定义

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

参数

haystack -- 要被检索的 C 字符串。
needle -- 在 haystack 字符串内要搜索的小字符串

描述

该函数返回在 haystack 中第一次出现 needle 字符串的位置,如果未找到,则返回 null。

 

例子

#include <stdio.h>
#include <string.h>


int main()
{
   const char haystack[20] = "RUNOOB";
   const char needle[10] = "NOOB";
   char *ret;

   ret = strstr(haystack, needle);

   printf("子字符串是: %s\n", ret);
   
   return(0);
}

输出

子字符串是: NOOB

 

 

参考:

https://www.runoob.com/cprogramming/c-function-strstr.html

C 库函数 - strstr()

标签:返回   int   har   spl   turn   tac   display   printf   one   

原文地址:https://www.cnblogs.com/sea-stream/p/11219535.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!