mirror of
https://github.com/wgh136/nysoure.git
synced 2025-09-27 04:17:23 +00:00
9 lines
142 B
Go
9 lines
142 B
Go
package utils
|
|
|
|
import "regexp"
|
|
|
|
func RemoveSpaces(s string) string {
|
|
reg := regexp.MustCompile(`\s+`)
|
|
return reg.ReplaceAllString(s, " ")
|
|
}
|