strrchr函数

       strrchr()函数:查找一个字符串在另一个字符串中末次出现的位置,并返回从字符串中的这个位置起,

 一直到字符串结束的所有字符。 如果未能找到指定字符,那么函数将返回NULL。

       函数原型:char *strrchr(char *str, char c);

       举例:

      

 

     #include <stdio.h> #include <string.h> #define MAX_PATH 260 int main() { char szPath[MAX_PATH]; getcwd(szPath, MAX_PATH); char* pszApplication = strrchr(szPath, '/'); if( pszApplication == NULL) { printf("do not find // /n"); } else { printf("found is %s/n", pszApplication); } return 0; }

你可能感兴趣的:(c,null,Path)