C语言中没有内置的index函数,但是可以使用strchr函数来实现类似功能。strchr函数用于在字符串中查找特定字符的第一次出现,并返回该字符的指针。
使用示例:
#include#include int main() { char str[] = "hello world"; char *ptr = strchr(str, 'o'); // 在str中查找字符'o'的第一次出现 if (ptr != NULL) { printf("找到了字符'o',其在字符串中的位置为:%ld\n", ptr - str); } else { printf("未找到字符'o'\n"); } return 0; }
输出结果:
找到了字符'o',其在字符串中的位置为:4
上述示例中,首先定义了一个字符串str
,然后使用strchr(str, 'o')
在str
中查找字符'o'
的第一次出现。如果找到了字符'o'
,则返回该字符的指针,并通过指针相减得到字符在字符串中的位置。如果未找到字符'o'
,则返回NULL。