这是修剪golang中字符串变量的前导和尾部空格的有效方法
例如,
原文链接:https://www.f2er.com/go/188091.htmlpackage main import ( "fmt" "strings" ) func main() { s := "\t Hello,World\n " fmt.Printf("%d %q\n",len(s),s) t := strings.TrimSpace(s) fmt.Printf("%d %q\n",len(t),t) }
输出:
16 "\t Hello,World\n " 12 "Hello,World"