C++ 中的strstr() 函数查找字符串中子字符串的第一次出现。
strstr()原型
const char* strstr( const char* str, const char* target ); char* strstr( char* str, const char* target );
strstr()
函数有两个参数:str
和 target
。它在 str
指向的字符串中搜索 target
的第一次出现。终止的空字符被忽略。
它在<cstring> 头文件中定义。
参数:
str
:指向要搜索的空终止字节字符串的指针。target
:指向要搜索的空终止字节字符串的指针。
返回:
- 如果找到子字符串,
strstr()
函数将指针返回到dest
中子字符串的第一个字符。 - 如果未找到子字符串,则返回空指针。
- 如果
dest
指向空字符串,则返回str
示例:strstr() 函数的工作原理
#include <cstring>
#include <iostream>
using namespace std;
int main()
{
char str[] = "Use your brain and heart";
char target[] = "brain";
char *p = strstr(str, target);
if (p)
cout << "'" << target << "' is present in \"" << str << "\" at position " << p-str;
else
cout << target << " is not present \"" << str << "\"";
return 0;
}
运行程序时,输出将是:
'brain' is present in "Use your brain and heart" at position 9
相关用法
- C++ strstr()用法及代码示例
- C++ strspn()用法及代码示例
- C++ string::length()用法及代码示例
- C++ strchr()用法及代码示例
- C++ string::npos用法及代码示例
- C++ strncat()用法及代码示例
- C++ strcat()用法及代码示例
- C++ strcat() vs strncat()用法及代码示例
- C++ strtok()用法及代码示例
- C++ strtod()用法及代码示例
- C++ strtoimax()用法及代码示例
- C++ strcmp()用法及代码示例
- C++ strcspn()用法及代码示例
- C++ strpbrk()用法及代码示例
- C++ strxfrm()用法及代码示例
- C++ strncmp()用法及代码示例
- C++ strtoull()用法及代码示例
- C++ string at()用法及代码示例
- C++ strol()用法及代码示例
- C++ strtoll()用法及代码示例
注:本文由纯净天空筛选整理自 C++ strstr()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。