Nur neugierig, herauszufinden: Warum gibt es in der Programmiersprache Go keine Standardfunktionen wie Starts, Endes usw. als Teil der Standardbibliotheken?
153
Das Zeichenfolgenpaket enthält HasPrefix und HasSuffix .
import "strings"
startsWith := strings.HasPrefix("prefix", "pre") // true
endsWith := strings.HasSuffix("suffix", "fix") // true