答:Trim函数原型如下:
func Trim(s string, cutset string) string
去掉字符串s中首部以及尾部与字符串cutset中每个相匹配的字符,如:
s="hello yes",cutset="he",那么s的结果为:"ello yes"