strstr函数详讲
时间: 2023-12-08 09:37:42 浏览: 102
strstr函数是C语言中的一个字符串处理函数,用于在一个字符串中查找另一个字符串的出现位置。该函数的原型如下:
```c
char *strstr(const char *str1, const char *str2);
```
其中,str1是要被查找的字符串,str2是要查找的子字符串。函数返回值是一个指向被查找字符串中第一次出现子字符串的指针,如果没有找到则返回NULL。
该函数的实现原理是通过遍历被查找字符串中的每个字符,逐一比较是否与子字符串相同。如果相同,则返回该位置的指针;如果不同,则继续向后遍历。
需要注意的是,该函数只能用于查找ASCII码字符,不能用于查找Unicode字符。
相关问题
strstr函数详讲和列子
strstr函数是C语言中的一个字符串处理函数,用于在一个字符串中查找另一个字符串的出现位置。其函数原型为:
```c
char *strstr(const char *str1, const char *str2);
```
其中,str1为要查找的字符串,str2为要查找的子字符串。函数返回值为指向第一次出现子字符串的指针,如果没有找到则返回NULL。
下面是一个示例代码:
```c
#include <stdio.h>
#include <string.h>
int main()
{
char str1[] = "hello world";
char str2[] = "world";
char *result = strstr(str1, str2);
if(result != NULL)
{
printf("'%s' is found in '%s' at position %ld.\n", str2, str1, result - str1);
}
else
{
printf("'%s' is not found in '%s'.\n", str2, str1);
}
return 0;
}
```
输出结果为:
```
'world' is found in 'hello world' at position 6.
```
这个例子中,我们在字符串"hello world"中查找子字符串"world",并输出其在原字符串中的位置。
strstr函数
strstr函数是C标准库中的一个函数,用于在一个字符串中查找另一个字符串的第一次出现。该函数的原型为:
```
char *strstr(const char *str1, const char *str2);
```
其中,str1表示要查找的字符串,str2表示要搜索的字符串。该函数返回一个指向第一次出现字符串 str2 的指针,如果未找到,则返回 NULL。
例如,以下代码可以在字符串 str 中查找第一次出现子串 substr 的位置:
```
char str[] = "hello world";
char substr[] = "world";
char *result = strstr(str, substr);
if (result != NULL) {
printf("Found at position %ld\n", result - str);
} else {
printf("Not found\n");
}
```
输出结果为:
```
Found at position 6
```
说明子串 "world" 在字符串 "hello world" 中的位置是从第 6 个字符开始的。
阅读全文