如何去掉中文字符串中的标点符号
1个回答
展开全部
#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;
}
#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;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询