std::strrchr
STD:strrchr
Defined in header | | |
---|---|---|
const char* strrchr( const char* str, int ch | | |
char* strrchr( char* str, int ch | | |
查找最后一次出现的ch
转换为char
所指向的字节字符串中的%29str
.终止空字符被视为字符串的一部分,如果搜索'\0'
...
参数
str | - | pointer to the null-terminated byte string to be analyzed |
---|---|---|
ch | - | character to search for |
返回值
中找到的字符的指针。str
,如果找不到这样的字符,则为空指针。
例
二次
#include <iostream>
#include <cstring>
int main()
{
char input[] = "/home/user/hello.c";
char* output = std::strrchr(input, '/'
if(output)
std::cout << output+1 << '\n';
}
二次
产出:
二次
hello.c
二次
另见
strchr | finds the first occurrence of a character (function) |
---|---|
wcsrchr | finds the last occurrence of a wide character in a wide string (function) |
rfind | find the last occurrence of a substring (public member function of std::basic_string) |
c strrchr文件
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。