strchr 查找某字符在字符串中首次出现的位置

头文件

#include <string.h>

语法

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

功能

函数返回一个指向 str 中 ch 首次出现的位置,当没有在 str 中找 ch 到返回 NULL。

示例

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

int main(void)
{
    char string[15];
    char *ptr, c = 'r';

    strcpy(string, "This is a string");
    ptr = strchr(string, c);
    if (ptr)
    {
        printf("The character %c is at position: %d\n", c, ptr-string);
    }
    else
    {
        printf("The character was not found\n");
    }
    return 0;
}

输出结果:

The character r is at position: 12
关于
本网站专注于 Java、数据库(MySQL、Oracle)、Linux、软件架构及大数据等多领域技术知识分享。涵盖丰富的原创与精选技术文章,助力技术传播与交流。无论是技术新手渴望入门,还是资深开发者寻求进阶,这里都能为您提供深度见解与实用经验,让复杂编码变得轻松易懂,携手共赴技术提升新高度。如有侵权,请来信告知:hxstrive@outlook.com
公众号