C++去除字符串空格和换行符(函数)

参考链接:链接

代码:

string get_string(string res) {
	//删除换行符
	int r = res.find('\r\n');
	while (r != string::npos)
	{
		if (r != string::npos)

		{
			res.replace(r, 1, "");
			r = res.find('\r\n');
		}
	}
	//删除所有空格
	res.erase(std::remove_if(res.begin(), res.end(), std::isspace), res.end());
	return res;
}

你可能感兴趣的:(C++,c++)