std::strrchr
来自 cppreference.com
定义于头文件 <cstring> 中 |
||
const char* strrchr( const char* str, int ch ); |
||
char* strrchr( char* str, int ch ); |
||
在由 str 指向的字节字符串中查找 ch(转换为 char 后)的最后一次出现。结束符 null 被视为字符串的一部分,如果搜索 '\0',则可以找到它。
内容 |
[编辑] 参数
str | - | 指向要分析的以 null 结尾的字节字符串的指针 |
ch | - | 要搜索的字符 |
[编辑] 返回值
指向在 str 中找到的字符的指针,如果未找到这样的字符,则为 null 指针。
[编辑] 示例
运行此代码
#include <cstring> #include <iostream> int main() { char input[] = "/home/user/hello.c"; char* output = std::strrchr(input, '/'); if (output) std::cout << output + 1 << '\n'; }
输出
hello.c
[编辑] 另请参阅
查找字符的第一次出现 (函数) | |
在宽字符串中查找宽字符的最后一次出现 (函数) | |
查找子字符串的最后一次出现 ( std::basic_string<CharT,Traits,Allocator> 的公共成员函数) | |
C 文档 for strrchr
|