命名空间
变体
操作

std::strchr

来自 cppreference.com
< cpp‎ | string‎ | byte
定义在头文件 <cstring>
const char* strchr( const char* str, int ch );
      char* strchr(       char* str, int ch );

static_cast<char>(ch) 指向的字节字符串中找到第一个出现的字符 str.

终止空字符被认为是字符串的一部分,并且如果搜索 '\0',可以找到它。

内容

[编辑] 参数

str - 指向要分析的以空字符结尾的字节字符串的指针
ch - 要搜索的字符

[编辑] 返回值

指向 str 中找到的字符的指针,或者如果找不到这样的字符则返回空指针。

[编辑] 示例

#include <cstring>
#include <iostream>
 
int main()
{
    const char* str = "Try not. Do, or do not. There is no try.";
    char target = 'T';
    const char* result = str;
 
    while ((result = std::strchr(result, target)) != nullptr)
    {
        std::cout << "Found '" << target
                  << "' starting at '" << result << "'\n";
 
        // Increment result, otherwise we'll find target at the same location
        ++result;
    }
}

输出

Found 'T' starting at 'Try not. Do, or do not. There is no try.'
Found 'T' starting at 'There is no try.'

[编辑] 参见

在数组中搜索第一个出现的字符
(函数) [编辑]
找到给定子字符串的第一个出现
(std::basic_string<CharT,Traits,Allocator> 的公有成员函数) [编辑]
在宽字符串中找到第一个出现的宽字符
(函数) [编辑]
找到最后一个出现的字符
(函数) [编辑]
找到一组分隔符中任何字符的第一个位置
(函数) [编辑]
C 文档 for strchr