只是好奇地发现:为什么Go编程语言的标准库中没有诸如startswith,endswith等标准函数?
该字符串包中包含HasPrefix和HasSuffix。
import "strings" startsWith := strings.HasPrefix("prefix", "pre") // true endsWith := strings.HasSuffix("suffix", "fix") // true
play.golang.org