题目描述
输入一个字符串,字符串中可能包含多个连续的空格,请将多余的空格去掉,只留下一个空格。
输入格式
共一行,包含一个字符串。
输出格式
输出去掉多余空格后的字符串,占一行。
数据范围
输入字符串的长度不超过200。
样例
输入样例:
Hello world.This is c language.
输出样例:
Hello world.This is c language.
C++ 代码
#include <iostream>
#include <string>
#include <regex>
using namespace std;
int main(){
string s;
getline(cin,s);
cout<<regex_replace(s,regex(" +")," ")<<endl;
return 0;
}