欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

将一串包含有标点的字符串去掉标点

程序员文章站 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;
}