给定一个文本文件,从中提取单词。换句话说,逐字读取文件的内容。
例子 :
Input: And in that dream, we were flying.
Output:
And
in
that
dream,
we
were
flying.
方法 :
1)打开包含字符串的文件。例如,名为“ file.txt”的文件包含字符串“ geeks for geeks”。
2)创建一个filestream变量来存储文件内容。
3)通过while循环从文件流中提取单词并将其打印到字符串变量中。
// C++ implementation to read
// file word by word
#include
using namespace std;
// driver code
int main()
{
// filestream variable file
fstream file;
string word, t, q, filename;
// filename of the file
filename = "file.txt";
// opening file
file.open(filename.c_str());
// extracting words from the file
while (file >> word)
{
// displaying content
cout << word << endl;
}
return 0;
}
输出:
geeks
for
geeks.
想要从精选的最佳视频中学习并解决问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。