中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++如何從文件中提取英文單詞

發布時間:2022-06-16 13:47:30 來源:億速云 閱讀:338 作者:iii 欄目:開發技術

本篇內容主要講解“C++如何從文件中提取英文單詞”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++如何從文件中提取英文單詞”吧!

思路:

1.打開文件

2.讀取每一行

3.找到特殊的標點符號的位置,進行刪除。

4.根據空格截取單詞 find(" ");

5.將拿到的每一個單詞放在鏈表中

一:讀取一行,去除該行標點符號

#include<iostream>
using namespace std;
#include<fstream>
#include<string>
#include<list>
void test_word_split();
 
int main()
{
	test_word_split();
	return 0;
}
 
void test_word_split()
{
	fstream fs;
	char filename[20] = {0};
	cout<<"請輸入打開的文件名:";
	cin>>filename;
	//打開文件
	fs.open(filename);
	cout<<"打開成功"<<filename<<endl;
	char buf[1024] = {0};
	fs.getline(buf,1024);//讀取每一行
	cout<<buf<<endl;
	size_t pos;   //找到位置
	string line;  //接替buf職責
	line = buf;
	pos = line.find_first_of(",.;:'?!()/\"");  //找特殊的標點符號
	while(pos!=string::npos)
	{   //刪除單個字符
		line.erase(pos,1);
		//再找下一個單個的字符
	   pos = line.find_first_of(",.;:'?!()/\""); 
	}
	cout<<line.c_str()<<endl; //string 轉char
}

C++如何從文件中提取英文單詞

二:截取單詞

#include<iostream>
using namespace std;
#include<fstream>
#include<string>
#include<list>
void test_word_split();
 
int main()
{
	test_word_split();
	return 0;
}
 
void test_word_split()
{
	fstream fs;
	char filename[20] = {0};
	cout<<"請輸入打開的文件名:";
	cin>>filename;
	//打開文件
	fs.open(filename);
	cout<<"打開成功"<<filename<<endl;
	char buf[1024] = {0};
	fs.getline(buf,1024);//讀取每一行
	cout<<buf<<endl;
	size_t pos;
	string line,word;
	line = buf;
	pos = line.find_first_of(",.;:'?!()/\"");  //找特殊的標點符號
	while(pos!=string::npos)
	{   //刪除單個字符
		line.erase(pos,1);   //從什么位置開始刪除多長的字符
		//再找下一個單個的字符
	    pos = line.find_first_of(",.;:'?!()/\""); 
	}
	cout<<line.c_str()<<endl; //string 轉char
	//根據空格截取單詞 find("")  111 222 333
	pos = line.find(" ");
	while(pos!=string::npos)
	{
		//截取單詞
		word = line.substr(0,pos);//從0開始,一直截到空格所在位置
		cout<<word<<endl;     
		//把第一個單詞以及空格刪除
		line.erase(0,pos+1);  //從什么位置開始刪除多長的字符(如刪111 )因此pos+1
		pos = line.find(" "); //尋找下一個空格
	}
}

C++如何從文件中提取英文單詞

三:將拿到的每一個單詞都放在鏈表中

#include<iostream>
using namespace std;
#include<fstream>
#include<string>
#include<list>
void test_word_split();
 
int main()
{
	test_word_split();
	return 0;
}
 
void test_word_split()
{
	list<string> wordList;//鏈表
	fstream fs;
	char filename[20] = {0};
	cout<<"請輸入打開的文件名:";
	cin>>filename;
	fs.open(filename);
	cout<<"打開成功"<<filename<<endl;
	char buf[1024] = {0};
	string line,word;  //初始化定義
	while(fs.getline(buf, 1024))//讀取每一行
	{
		size_t pos;  //找到位置
		line = buf;  //接替buf職責
		pos = line.find_first_of(",.;:'?!()/\"");
		while(pos!=string::npos)//!=npos就找到
		{
			line.erase(pos,1);  //從什么位置開始刪除多長字符
			pos = line.find_first_of(",.;:'?!()/\"");//尋找下一個標點符號
		}
		pos = line.find(" ");  //尋找空格所在位置
		while(pos!=string::npos)
		{
			word = line.substr(0,pos);//從0開始,一直截到空格所在位置
			wordList.push_back(word); //拿到的單詞放在鏈表中
			//把第一個單詞以及空格刪除
			line.erase(0, pos+1);//從什么位置開始刪除多長的字符(如刪111 )因此pos+1
			pos = line.find(" ");//尋找下一個空格
		}
	}
	cout<<"驗證一下"<<endl;
	list<string>::iterator it;
	for(it = wordList.begin();it!=wordList.end();it++)
	{
		cout<<(*it).c_str()<<endl;
	}
	cout<<"總的個數:"<<wordList.size();
	fs.close();
}

最后的結果:

C++如何從文件中提取英文單詞

到此,相信大家對“C++如何從文件中提取英文單詞”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

肇东市| 婺源县| 临湘市| 班玛县| 阳谷县| 安庆市| 平原县| 逊克县| 离岛区| 茶陵县| 承德县| 五台县| 栾川县| 连云港市| 沭阳县| 五常市| 淮阳县| 博客| 通辽市| 剑川县| 辽中县| 建昌县| 兴国县| 清远市| 彩票| 文化| 高青县| 保康县| 福州市| 西乌珠穆沁旗| 凭祥市| 象州县| 聊城市| 海兴县| 沙田区| 浠水县| 太康县| 玉田县| 仁布县| 沁阳市| 吉木乃县|