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

C 库函数 - strchr()

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

标签:controls   style   min   spl   定义   splay   color   函数   出现   

 

定义

char *strchr(const char *str, int c)

参数

  • str -- 要被检索的 C 字符串。
  • c -- 在 str 中要搜索的字符

说明

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

 

例子

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

int main ()
{
   const char str[] = "http://www.runoob.com";
   const char ch = .;
   char *ret;

   ret = strchr(str, ch);

   printf("|%c| 之后的字符串是 - |%s|\n", ch, ret);
   
   return(0);
}

输出

|.| 之后的字符串是 - |.runoob.com|

 

 

参考:

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

 

 

C 库函数 - strchr()

标签:controls   style   min   spl   定义   splay   color   函数   出现   

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

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