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

C 库函数 - strstr()

时间:2020-05-29 23:42:12      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:div   str   ring   res   int   list   %s   函数返回   example   

描述

C 库函数 char *strstr(const char *haystack, const char *needle) 在字符串 haystack 中查找第一次出现字符串 needle 的位置,不包含终止符 ‘\0‘。

声明

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

注意

该函数用于查找字符串,用于string类型可能出错。

参数

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

返回值

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

实例

下面的实例演示了 strstr() 函数的用法。

 

#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);
}

 

C 库函数 - strstr()

标签:div   str   ring   res   int   list   %s   函数返回   example   

原文地址:https://www.cnblogs.com/asunayi/p/12989998.html

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