strchr
定义于头文件 <string.h>
|
||
char *strchr( const char *str, int ch ); |
||
寻找 ch
(如同用 (char)ch 转换成 char 后)在 str
所指向的空终止字节字符串(转译每个字符为 unsigned char )中的首次出现位置。终止空字符被认为是字符串的一部分,并且能在寻找 '\0' 时找到。
若 str
不是指向空终止字节字符串的指针,则行为未定义。
参数
str | - | 指向待分析的空终止字节字符串的指针 |
ch | - | 要搜索的字符 |
返回值
指向 str
找到的字符的指针,若未找到该字符则为空指针。
示例
运行此代码
#include <stdio.h> #include <string.h> int main(void) { const char *str = "Try not. Do, or do not. There is no try."; char target = 'T'; const char *result = str; while((result = strchr(result, target)) != NULL) { printf("Found '%c' starting at '%s'\n", target, result); ++result; // result 自增,否则我们会找到相同位置的目标 } }
输出:
Found 'T' starting at 'Try not. Do, or do not. There is no try.' Found 'T' starting at 'There is no try.'
引用
- C11 standard (ISO/IEC 9899:2011):
- 7.24.5.2 The strchr function (p: 367-368)