0

是否可以仅从给定的输入行读取字母数字字符而忽略 C/C++ 中的所有其他内容?我试图一次阅读整行。

假设我们必须阅读以下行:

 aaa, bbb, ccc .

在这里,我的意图是在输入时忽略逗号、点和空格。

4

2 回答 2

4

您可以通过多种方式执行此操作,例如,最简单的方法是读取整行,然后删除您以后不需要的位:

#include <algorithm>
#include <iostream>
#include <string>
#include <functional>
#include <ctype.h>

int main() {
  std::string line;
  while (std::getline(std::cin, line)) {
    line.erase(std::remove_if(line.begin(), line.end(), std::not1(std::ptr_fun(isalnum))), line.end());
    std::cout << line << "\n";
  }
}

读取一行,然后删除任何返回 false 的字符isalnum。(在 C++11 中你可以稍微简化一下)

于 2012-06-23T14:26:52.757 回答
-2

您可以编写一个字符串数组并使用逗号、点和空格作为字符串分隔符。将每个字符串存储在数组中,然后输出。

aaa, bbb, ccc .

aaa will be stored in string[0]
bbb will be stored in string[1]
ccc will be stored in string[2]

然后只需通过 for 循环输出字符串,您将得到

aabbcc

于 2012-06-23T14:22:53.820 回答