c++中字符串查找函数怎么写
时间: 2024-05-30 19:15:40 浏览: 93
c 查找字符串
C语言中字符串查找函数可以使用库函数strstr()来实现。
函数原型为:
char *strstr(const char *str1, const char *str2);
其中,str1表示要查找的字符串,str2表示要查找的子字符串。
函数返回值为指向首次出现子字符串的指针,如果没有找到则返回NULL。
示例代码:
#include <stdio.h>
#include <string.h>
int main()
{
char str1[] = "Hello, world!";
char str2[] = "world";
char *ptr;
ptr = strstr(str1, str2);
if (ptr != NULL) {
printf("'%s' is found in '%s' at position %ld\n", str2, str1, ptr - str1);
} else {
printf("'%s' is not found in '%s'\n", str2, str1);
}
return 0;
}
输出结果为:
'world' is found in 'Hello, world!' at position 7
阅读全文