Golang String Split
s := strings.Split("a,b,c", ",")
Dopey Diplodocus
s := strings.Split("a,b,c", ",")
s = s[:len(s)-1]