admin 管理员组

文章数量: 887021


2023年12月20日发(作者:jsp注解)

求子串函数strstr()的用法

strstr()函数是在一个字符串中查找另一个字符串,用法如下:

```cpp

#include

char *strstr(char *str1, char *str2);

```

参数str1表示主串,参数str2表示要查找的子串,该函数返回子串在主串中出现的第一个字符的指针,如果没有要查找的子串,则返回 NULL。

例如:

```cpp

#include

#include

using namespace std;

int main(){

char str1[]="Hello World";

char str2[]="World";

char *p=strstr(str1,str2);

cout<

return 0;

}

```

结果将输出 World


本文标签: 子串 主串 查找