function
<cstring>
strrchrconst 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.
char * strrchr ( const char *, int );
instead of the two overloaded versions provided in C++.
1
2
3
4
5
6
7
8
9
10
11
12
/* strrchr example */
#include <stdio.h>
#include <string.h>
int main ()
{
char str[] = "This is a sample string";
char * pch;
pch=strrchr(str,'s');
printf ("Last occurence of 's' found at %d \n",pch-str+1);
return 0;
}
Last occurrence of 's' found at 18
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4