答:Trim函数原型如下:
func Trim(s , cutset )
去掉字符串s中首部以及尾部与字符串cutset中每个相匹配的字符,如:
s="hello yes",cutset="he",那么s的结果为:"ello yes"
本文共 169 字,大约阅读时间需要 1 分钟。
答:Trim函数原型如下:
func Trim(s , cutset )
去掉字符串s中首部以及尾部与字符串cutset中每个相匹配的字符,如:
s="hello yes",cutset="he",那么s的结果为:"ello yes"
转载于:https://www.cnblogs.com/dakewei/p/10186024.html