#include <cstring> char *strrchr( const char *str, int ch );
函数 strrchr() 返回指向 str 中 ch 的最后一次出现的指针,如果未找到匹配项,则返回 NULL。