如何去掉中文字符串中的标点符号

 我来答
可爱小不点year
2017-09-02 · TA获得超过803个赞
知道小有建树答主
回答量:859
采纳率:89%
帮助的人:787万
展开全部
#include <iostream>
#include <string>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
#include <cctype>
using namespace std;
int main(int argc, char** argv) {
string s;
cout << "请输入一个字符串,最好是含有某些标点符号:" << endl;
getline(cin,s);
for(auto n : s)
{
if(!ispunct(n))
cout << n;
}
cout << endl;

return 0;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式