描述
C庫函數char *strrchr(const char *str, int c)搜索最後一次出現的字符c(無符號字符)在參數指向的字符串中str。
聲明
以下是 strrchr() 函數的聲明。
char *strrchr(const char *str, int c)
參數
str─ 這是 C 字符串。
c─ 這是要定位的字符。它作為它的 int 提升傳遞,但它在內部被轉換回 char。
返回值
該函數返回一個指向 str 中最後一次出現的字符的指針。如果未找到該值,則該函數返回一個空指針。
示例
下麵的例子展示了 strrchr() 函數的用法。
#include <stdio.h>
#include <string.h>
int main () {
int len;
const char str[] = "http://www.tutorialspoint.com";
const char ch = '.';
char *ret;
ret = strrchr(str, ch);
printf("String after |%c| is - |%s|\n", ch, ret);
return(0);
}
讓我們編譯並運行上麵的程序,它會產生以下結果——
String after |.| is - |.com|
相關用法
- C語言 strrev()用法及代碼示例
- C語言 strcspn()用法及代碼示例
- C語言 strtol()用法及代碼示例
- C語言 strftime()用法及代碼示例
- C語言 strtok()用法及代碼示例
- C語言 strncat()用法及代碼示例
- C語言 strupr()用法及代碼示例
- C語言 strlen()用法及代碼示例
- C語言 strtod()用法及代碼示例
- C語言 strspn()用法及代碼示例
- C語言 strstr()用法及代碼示例
- C語言 strcat()用法及代碼示例
- C語言 strxfrm()用法及代碼示例
- C語言 strchr()用法及代碼示例
- C語言 strcmpi()用法及代碼示例
- C語言 strtok()、strtok_r()用法及代碼示例
- C語言 strerror()用法及代碼示例
- C語言 strpbrk()用法及代碼示例
- C語言 strnset()用法及代碼示例
- C語言 strcoll()用法及代碼示例
注:本文由純淨天空篩選整理自 C library function - strrchr()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。