📅  最后修改于: 2020-09-25 09:14:36             🧑  作者: Mango
const char* strrchr( const char* str, int ch );
char* strrchr( char* str, int ch );
strrchr()
函数采用两个参数: str
和ch
。它在str
指向的字符串搜索字符 ch
的最后一次出现。
它在
如果找到ch
, strrchr()
函数将返回指向ch
在str
最后一个位置的指针,否则返回空指针。
#include
#include
using namespace std;
int main()
{
char str[] = "Hello World!";
char ch = 'o';
char *p = strrchr(str, ch);
if (p)
cout << "Last position of " << ch << " in \"" << str << "\" is " << p-str;
else
cout << ch << " is not present \"" << str << "\"";
return 0;
}
运行该程序时,输出为:
Last position of o in "Hello World!" is 7