gpt4 book ai didi

c++ - 检查文本文件中是否存在单词c++

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:55:33 24 4
gpt4 key购买 nike

我需要检查字典文本文件中是否存在某个单词,我想我可以使用 strcmp,但我实际上不知道如何从文档中获取一行文本。这是我目前坚持使用的代码。

#include "includes.h"
#include <string>
#include <fstream>

using namespace std;
bool CheckWord(char* str)
{
ifstream file("dictionary.txt");

while (getline(file,s)) {
if (false /* missing code */) {
return true;
}
}
return false;
}

最佳答案

std::string::find 完成这项工作。

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

bool CheckWord(char* filename, char* search)
{
int offset;
string line;
ifstream Myfile;
Myfile.open (filename);

if (Myfile.is_open())
{
while (!Myfile.eof())
{
getline(Myfile,line);
if ((offset = line.find(search, 0)) != string::npos)
{
cout << "found '" << search << "' in '" << line << "'" << endl;
Myfile.close();
return true;
}
else
{
cout << "Not found" << endl;
}
}
Myfile.close();
}
else
cout << "Unable to open this file." << endl;

return false;
}


int main ()
{
CheckWord("dictionary.txt", "need");
return 0;
}

关于c++ - 检查文本文件中是否存在单词c++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13482464/

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