c语言函数index()如何查找字符串并返回首次出现的位置?c语言相关函数:rindex, srechr, strrchr
index()函数需要引入的头文件:#include <string.h>
index()函数如何定义:char * index(const char *s, int c);
index()方法介绍:index()用来找出参数s 字符串中第一个出现的参数c 地址,然后将该字符出现的地址返回。字符串结束字符(NULL)也视为字符串一部分。
index()函数返回值:如果找到指定的字符则返回该字符所在地址,否则返回0.
index()函数实例源码介绍:
#include <string.h> main(){ char *s = "0123456789012345678901234567890"; char *p; p = index(s, '5'); printf("%s\n", p); }
执行结果:
5.68E+25