strstr 使用方式
时间: 2024-05-24 17:07:22 浏览: 88
strstr和strcpy函数实现
strstr是C语言中的一个字符串处理函数,用于在一个字符串中查找指定子串的位置。它的使用方式如下:
```c
char *strstr(const char *haystack, const char *needle);
```
其中,`haystack`是要搜索的字符串,`needle`是要查找的子串。函数会返回子串在字符串中第一次出现的位置,如果找不到则返回NULL。
以下是一个使用strstr函数的示例:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, world!";
char *result = strstr(str, "world");
if (result != NULL) {
printf("子串在字符串中的位置:%ld\n", result - str);
} else {
printf("未找到子串\n");
}
return 0;
}
```
输出结果为:
```
子串在字符串中的位置:7
```
这个示例中,我们在字符串"Hello, world!"中查找子串"world",并打印出子串在字符串中的位置。
阅读全文