Linux C function() 參考手冊:rindex(找字串中最後一個出現的指定字元)

Linux C function() 參考手冊:rindex(找字串中最後一個出現的指定字元)

Linux C function() 參考手冊:rindex(找字串中最後一個出現的指定字元)

 

資料來源:http://people.cs.nctu.edu.tw/~yslin/library/linuxc/main.htm
線上執行:http://www.tutorialspoint.com/compile_c_online.php
code2html:http://tohtml.com/

 

相關函數
index,memchr,strchr,strrchr
表頭文件
#include<string.h>
定義函數
char * rindex( const char *s,int c);
函數說明
rindex()用來找出參數s字符串中最後一個出現的參數c地址,然後將該字符出現的地址返回。字符串結束字符(NULL)也視為字符串一部分。
返回值
如果找到指定的字符則返回該字符所在的地址,否則返回0。
範例

 

#include <stdio.h>
#include <string.h>

int main() { char *s ="9876543210123456789"; char *p; printf("s=%d\n",s); printf("%s\n",s); p=rindex(s,'5'); printf("p=%d\n",p); printf("%s\n",p); return 0; }

 

 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *