C语言strchr()函数:字符查找函数

C语言 strchr() 函数用于查找给定字符串中某一个特定字符。

头文件:string.h

语法/原型:

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

参数说明:

  • str:被查找的字符串。
  • c:要查找的字符。

strchr() 函数会依次检索字符串 str 中的每一个字符,直到遇见字符 c,或者到达字符串末尾(遇见/0)。

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

【实例】使用C语言 strchr() 函数在C语言中文网的网址中查找g字符。

#include <stdio.h>
#include <string.h>
int main(){
    const char *str = "http://c.biancheng.net/";
    int c = 'g';
    char *p = strchr(str, c);

    if (p) {
        puts("Found");
    } else {
        puts("Not found");
    }

    return 0;
}

运行结果:
Found

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/22501.html

(0)
上一篇 2021年7月20日
下一篇 2021年7月20日

相关推荐

发表回复

登录后才能评论