Golang去除字符串前后空格

v.EthName = strings.Trim(v.EthName, " ")
//两种方法都可以.
v.EthName = strings.TrimSpace(v.EthName)

你可能感兴趣的:(go,golang)