153 Ciekawe: dlaczego nie ma standardowych funkcji, takich jak beginwith, endwith itp. Jako części standardowych bibliotek w języku programowania Go? string go Sahas źródło
271 Ciągi pakiet zawiera HasPrefix i HasSuffix . import "strings" startsWith := strings.HasPrefix("prefix", "pre") // true endsWith := strings.HasSuffix("suffix", "fix") // true play.golang.org Kyle Finley źródło