c:string:strrchr From C++ Reference previous page next page strrchr Syntax: #include <cstring> char *strrchr( const char *str, int ch ); The function strrchr() returns a pointer to the last occurrence of ch in str, or NULL if no match is found. Related Topics: strcspn, strpbrk, strspn, strstr, strtok previous page start next page