gpt4 book ai didi

c++ - 在c中的另一个char数组中找到一个char数组

转载 作者:太空宇宙 更新时间:2023-11-04 15:25:55 25 4
gpt4 key购买 nike

#include <iostream>
using namespace std;
int main ()
{
char name[10];
cin>>name;
char str[] = "Thomas";
char * pch;
pch=strchr(name,str);
if (pch!=NULL) {
cout<<"Foud"<<endl;
}

return 0;
}

你好,如果你知道如何在字符串中搜索单词,为什么我不能在 strchr 函数中使用 2 个变量

最佳答案

使用 strstr

#include <iostream>
using namespace std;
int main ()
{
char name[10];
cin>>name;
char str[] = "Thomas";
char * pch;
pch=strstr(name,str);
if (pch!=NULL) {
cout<<"Found"<<endl;
}

return 0;
}

关于c++ - 在c中的另一个char数组中找到一个char数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8562284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com