📜  进入一个字符串,用单个空格替换多个空格 - Go 编程语言代码示例
📅  最后修改于: 2022-03-11 14:44:59.307000             🧑  作者: Mango
代码示例1
whitespaces := regexp.MustCompile(`\s+`)
t := whitespaces.ReplaceAllString(s, " ")