我正在使用 getline() 函数来获取句子中的特殊字符和标点符号,这样当我显示句子中包含的单词时,它除了 az(或 AZ)之外没有任何其他字符。问题是它会变得很长,而且我认为它不是很有效。我想知道我是否可以有效地做到这一点。我正在使用 Dev-C++,下面的代码是 C++。谢谢你的帮助。
#include <string>
#include <iostream>
#include <ctype.h>
#include <sstream>
using namespace std;
int main()
{
int i=0;
char y;
string prose, word, word1, word2;
cout << "Enter a sentence: ";
getline(cin, prose);
string mot;
stringstream ss(prose);
y=prose[i++];
if (y=' ') // if character space is encoutered...
cout<<endl << "list of words in the prose " << endl;
cout << "---------------------------"<<endl;
while(getline(ss, word, y)) //remove the space...
{
stringstream ss1(word);
while(getline(ss1, word1, ',')) //remove the comma...
{
stringstream ss2(word1); //remove the period
while(getline(ss2, word2, '.'))
cout<< word2 <<endl; //and display just the word without space, comma or period.
}
}
cout<<'\n';
system ("Pause");
return 0;
}
#############################输出
输入一句话:什么?当我说:“妮可,给我拖鞋,给我睡帽,”那是散文吗?
散文中的单词列表
什么?当我说:“妮可把我的拖鞋给我,给我我的睡帽”那是散文吗?
按任意键继续 。. .