C 语言

关注公众号 jb51net

关闭
首页 > 软件编程 > C 语言 > C语言的index函数和rindex函数

详解C语言中index()函数和rindex()函数的用法

投稿:goldensun

这篇文章主要介绍了C语言中index()函数和rndex()函数的用法,是C语言入门学习中的基础知识,要的朋友可以参考下

C语言index()函数:查找字符串并返回首次出现的位置
相关函数:rindex, srechr, strrchr

头文件:#include <string.h>

定义函数:

char * index(const char *s, int c);

函数说明:index()用来找出参数s 字符串中第一个出现的参数c 地址,然后将该字符出现的地址返回。字符串结束字符(NULL)也视为字符串一部分。

返回值:如果找到指定的字符则返回该字符所在地址,否则返回0.

范例

#include <string.h>
main(){
  char *s = "0123456789012345678901234567890";
  char *p;
  p = index(s, '5');
  printf("%s\n", p);
}

执行结果:

5.68E+25


C语言rindex()函数:查找字符串并返回最后一次出现的位置

头文件:#include <string.h>

定义函数:

char * rindex(const char *s, int c);

函数说明:rindex()用来找出参数s 字符串中最后一个出现的参数c 地址,然后将该字符出现的地址返回。字符串结束字符(NULL)也视为字符串一部分。

返回值:如果找到指定的字符则返回该字符所在的地址,否则返回0。

范例

#include <string.h>
main(){
  char *s = "0123456789012345678901234567890";
  char *p;
  p = rindex(s, '5');
  printf("%s\n", p);
}

执行结果:

567890

您可能感兴趣的文章:
阅读全文