We're a place where coders share, stay up-to-date and grow their careers.
Hey @peter , you can also use multiple values in a single case statement
switch c { case 'a', 'e', 'i', 'o', 'u': ls += string(c) default: arr = append(arr, ls) ls = "" }
github.com/golang/go/wiki/Switch#m...
Hey good to know thanks! Just learning go so didn't realize I could do that. Thanks!
there's also strings.Count built-in method ;)
strings.Count
golang.org/pkg/strings/#Count
strings.Count("codewarriors", "a") // 1
Hey @peter , you can also use multiple values in a single case statement
github.com/golang/go/wiki/Switch#m...
Hey good to know thanks! Just learning go so didn't realize I could do that. Thanks!
there's also
strings.Count
built-in method ;)golang.org/pkg/strings/#Count