在Go中,如果我有一个字符串变量s:var s string = "a,b,c,d,e"如何将其转换或拆分或爆炸为切片或字符串数组,以使其变为:arr[0] = "a"...arr[4] = "e" 查看完整描述