在C語言中,沒有內置的indexof
函數,但是可以通過自己編寫實現類似功能的函數來實現。下面是一個示例代碼來實現類似indexof
功能的函數:
#include <stdio.h>
#include <string.h>
int indexof(const char *str, const char *substr) {
const char *ptr = strstr(str, substr);
if (ptr) {
return ptr - str;
} else {
return -1;
}
}
int main() {
char str[] = "Hello, world!";
char substr[] = "world";
int index = indexof(str, substr);
if (index != -1) {
printf("Substring '%s' found at index %d\n", substr, index);
} else {
printf("Substring '%s' not found\n", substr);
}
return 0;
}
在上面的示例代碼中,indexof
函數用來查找子字符串在原始字符串中的位置,如果找到則返回第一次出現的位置索引,否則返回-1。在main
函數中使用這個函數來查找子字符串在原始字符串中的位置并輸出結果。