将一串包含有标点的字符串去掉标点
程序员文章站
2022-03-03 17:07:18
...
ispunct()函数在cctype头文件中
string delatePunct(string s) //P86->3.10 将一串包含有标点的字符串去掉标点
{
string s1;
for (auto c : s)
if (!ispunct(c)) //ispunct(c)是检测c是否是标点
s1 += c;
cout << s1 << endl;
return s1;
}