|
strrchrfunction
<cstring> const char * strrchr ( const char * str, int character ); char * strrchr ( char * str, int character ); Locate last occurrence of character in string Returns a pointer to the last occurrence of character in the C string str.The terminating null-character is considered part of the C string. Therefore, it can also be located to retrieve a pointer to the end of a string. Parameters
Return ValueA pointer to the last occurrence of character in str.If the value is not found, the function returns a null pointer. PortabilityIn C, this function is declared as:char * strrchr ( const char *, int ); instead of the two overloaded versions provided in C++. Example
Output:
See also
|