c++里strstr函数用法
时间: 2023-07-26 13:38:18 浏览: 92
C++中strstr函数的实现方法总结
5星 · 资源好评率100%
`strstr`函数是C++标准库中的一个字符串函数,其使用方法如下:
```c++
const char *strstr(const char *str1, const char *str2);
```
该函数在字符串`str1`中查找第一次出现字符串`str2`的位置,如果找到,则返回该位置的指针;如果未找到,则返回`nullptr`。
示例代码:
```c++
#include <iostream>
#include <cstring>
int main() {
const char* str1 = "hello, world!";
const char* str2 = "world";
const char* result = strstr(str1, str2);
if (result) {
std::cout << "Found at position " << result - str1 << std::endl;
} else {
std::cout << "Not found" << std::endl;
}
return 0;
}
```
输出结果为:
```
Found at position 7
```
需要注意的是,`strstr`函数是区分大小写的,如果需要进行不区分大小写的字符串查找,可以使用`strcasestr`函数。
阅读全文