当我尝试使用打印命令行参数时
fmt.Println(os.Args[1:])
我得到了结果
[Gates Bill]
我如何摆脱[]
争论?而且Go
似乎吃在参数所有逗号,我怎么能得到的输出喜欢
Last name, First name Gates, Bill
Chandra Seka.. 9
你应该用strings.Join
它.尝试,
fmt.Printf("%s, Author of The Art of Computer Programming", strings.Join(os.Args[1:], ", "))
Join
返回一个string
与", "
每个参数之间插入.
你应该用strings.Join
它.尝试,
fmt.Printf("%s, Author of The Art of Computer Programming", strings.Join(os.Args[1:], ", "))
Join
返回一个string
与", "
每个参数之间插入.