今日分享知识点strings包的函数 replace.
1.函数语法
func Replace(s, old, new string, n int) string
// s为要处理的字符串,old为要替换的字符串,new为要替换成的字符串. n为替换的数量个数. n=-1时为替换全部.
2.举例子
var str =`
go
lang
`
func main(){

fmt.Println(strings.Replace(str,"\n","",-1))

}