package utils import ( "strings" ) func Str2StrSlice(value string) []string { return strings.Split(strings.ReplaceAll(value, " ", ""), ",") }