C 库函数 - strchr()
Posted sea-stream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C 库函数 - strchr()相关的知识,希望对你有一定的参考价值。
定义
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()的主要内容,如果未能解决你的问题,请参考以下文章