0

我正在使用 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;
}
#############################输出

输入一句话:什么?当我说:“妮可,给我拖鞋,给我睡帽,”那是散文吗?

散文中的单词列表

什么?当我说:“妮可把我的拖鞋给我,给我我的睡帽”那是散文吗?

按任意键继续 。. .

4

1 回答 1

3

使用std::remove_if()

std::string s(":;[{abcd 8239234");

s.erase(std::remove_if(s.begin(),
                       s.end(),
                       [](const char c) { return !isalpha(c); }),
        s.end());

如果您没有 C++11 编译器,请定义谓词而不是使用 lambda(在线演示http://ideone.com/NvhKq)。

于 2012-09-12T08:16:10.903 回答