您的位置:首页 > 大数据 > 人工智能

原型:char *strrchr(const char *str, char c); http://blog.csdn.net/hgj125073/article/details/8443912

2015-09-08 15:29 573 查看
【FROM MSDN && 百科】

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

#include<string.h>

找一个字符c在另一个字符串str中末次出现的位置(也就是从str的右侧开始查找字符c首次出现的位置),并返回从字符串中的这个位置起,一直到字符串结束的所有字符。如果未能找到指定字符,那么函数将返回NULL。

The strrchr function finds the last occurrence of c (converted to char)
in str. The search includes the terminating null character.

DEMO:

[cpp] view
plaincopy

#include <stdio.h>

#include <conio.h>

#include <string.h>

#pragma warning (disable:4996)

int main(void)

{

char string[20];

char *ptr;

char c='r';

strcpy(string,"There are two rings");

ptr=strrchr(string,c);

//ptr=strchr(string,c);

if (ptr!=NULL)

{

printf("The character %c is at position:%s\n",c,ptr);

}

else

{

printf("The character was not found\n");

}

getch();

return 0;

}

版权声明:本文为博主原创文章,未经博主允许不得转载。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: