gpt4 book ai didi

c++ - 如何在C++中搜索字符串数组

转载 作者:行者123 更新时间:2023-11-28 03:20:21 25 4
gpt4 key购买 nike

我希望能够在 C++ 中搜索字符串数组。我有这个数据:

"Foo Becky, 924-334-2514", 
"Becky Warren, 555-1223",
"Geri Palmer, 555-8787",
"Ron Palmer, 555-2783"

如果用户键入 Bec,程序会找到姓名 Foo Becky, 924-234-2314。如果用户键入 Palmer,则程序应显示 Geri Palmer, 555-8787Ron Palmer, 555-2783

这是我目前所拥有的:

#include <iostream>
#include <string>
using namespace std;
int main(){
int n;
string search;

while(1){
cout << "How many data you want to input: "<< endl;
cin >> n;
cin.ignore(1000, 10);

if(n > 0 && n < 20){
break;
}
cout << "Number of data can not be negative or more than 20. "<< endl;
}

string* data = new string[n];

for(int i=0; i< n; i++){
cout << "Enter [First Name] [Last Name], [Phone-Number] and then hit "
<< "enter." << endl << "e.g: Foo Becky, 925-245-413"<< endl;
getline(cin,data[i]);
cout << endl;
}

cout << "Enter what you want to search for: "<< endl;
getline(cin, search);

for(int i =0; i< n; i++){
if(search == data[i]){
cout << data[i]<< endl;
}
}
delete [] data;
return 0;
}

如何在 C++ 中搜索字符串数组?

最佳答案

您必须使用 find std::string 的方法。此函数返回在搜索的字符串中搜索的字符串的起始位置。如果未找到匹配项,则返回 npos。女巫实际上只是 -1

if(data[i].find(search, 0) != std::string::npos);
{
cout << data[i]<< endl;
}

关于c++ - 如何在C++中搜索字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15606745/

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