頭檔案
#include<string.h>
函式原型
char * rindex( const char *s,char c);
函式說明
rindex()用來找出參數s字元串中最後一個出現的參數c 地址,然後將該字元出現的地址返回。字元串結束字元(NULL)也視為字元串一部分。如果找到指定的字元則返回該字元所在的地址,否則返回0。
index()與 rindex()類似,但是用來找出參數s字元串中最開始出現字元c的所在地址,並將其作為函式返回。
範例
#include <string.h>
main()
{
char *s =”01234567891234567891234567890”;
char *p;
p= rindex(s,’5’);
printf(“%s\n”,p);
}執行:567890