2022年7月2日星期六

C strrchr

 char *strrchr(const char *string, int c);

函式功能:找到特定字元最後一次出現在string中的位置,並回傳該位置的指標。

下列程式碼使用strrchr去找到字串中’o’最後一次出現的位址。

  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void)
  5. {
  6. char String1[12] = "hello world";
  7. char *ptr;
  8. int find_ch = 'o';
  9. int Location = 0;
  10. ptr = strrchr( String1, find_ch );
  11. printf( "'%c' last show at '%s'\n",find_ch, ptr );
  12. Location = ptr - (int)(&String1);//透過兩個位址相減得到字元所在位置
  13. printf("%c is at String1[%d]\n",find_ch,Location);
  14. }

執行效果如下

參考資料

沒有留言:

發佈留言

打賞按讚