package main
import (
"fmt"
"regexp"
"strings"
)
func main() {
str := "Go: is a statically typed, compiled high-level, ~!@#$%^&*() programm[i]ng language."
re := regexp.MustCompile(`[^\w\s]|_`)
str = re.ReplaceAllString(str, "")
str = strings.Join(strings.Fields(str), " ")
fmt.Println(str)
}
/*
run:
Go is a statically typed compiled highlevel programming language
*/