golang计算中文文字数量
fmt.Println(len("世界"),
utf8.RuneCountInString("世界 "),
utf8.RuneCountInString("abc123"),
utf8.RuneCountInString("a世界"))
// 6 3 6 3 //1个中文字作为数量1返回
fmt.Println(len("世界"),
utf8.RuneCountInString("世界 "),
utf8.RuneCountInString("abc123"),
utf8.RuneCountInString("a世界"))
// 6 3 6 3 //1个中文字作为数量1返回