153 Es curioso descubrirlo: ¿por qué no hay funciones estándar como beginwith, endswith, etc. como parte de las bibliotecas estándar en el lenguaje de programación Go? string go Sahas fuente
271 El paquete de cadenas contiene HasPrefix y HasSuffix . import "strings" startsWith := strings.HasPrefix("prefix", "pre") // true endsWith := strings.HasSuffix("suffix", "fix") // true play.golang.org Kyle Finley fuente