📅  最后修改于: 2022-03-11 14:45:00.307000             🧑  作者: Mango
space := regexp.MustCompile(`\s+`)
str := space.ReplaceAllString("Hello \t \n world!", " ")
fmt.Println(str) // "Hello world!"