C語言的strstr函數用于在一個字符串中查找另一個字符串的第一次出現位置。它的使用方法如下:
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "This is a test string";
char *result;
result = strstr(str, "test");
if(result == NULL) {
printf("Substring not found\n");
}
else {
printf("Substring found at index %ld\n", result - str);
}
return 0;
}
輸出結果為:Substring found at index 10,表示在字符串str中找到了子字符串"test",其起始位置為索引10。
C語言的strtok函數用于將一個字符串分割成一系列子字符串。它的使用方法如下:
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "This is a test string";
char *token;
token = strtok(str, " ");
while(token != NULL) {
printf("%s\n", token);
token = strtok(NULL, " ");
}
return 0;
}
輸出結果為:
This
is
a
test
string
這個例子將字符串str按照空格進行分割,并逐個打印出每個子字符串。