C++string字符串查找
时间: 2023-10-04 17:11:10 浏览: 146
详解C++ string字符串类
可以使用C++中的函数strstr(),其原型为:
char *strstr(const char *str1, const char *str2);
其中,str1为目标字符串,str2为需要查找的字符串,函数返回str2在str1中首次出现的位置,如果未找到则返回NULL。例如:
char str1[] = "hello world";
char str2[] = "world";
char *ptr = strstr(str1, str2);
if (ptr != NULL) {
printf("%s\n", ptr); // 输出 "world"
} else {
printf("未找到\n");
}
阅读全文